Files
opensourcepos/app/Config/OSPOS.php
2023-04-27 21:54:10 -04:00

18 lines
421 B
PHP

<?php
namespace Config;
use CodeIgniter\Config\BaseConfig;
/**
* This class holds the configuration options stored from the database so that on launch those settings can be cached
* once in memory. The settings are referenced frequently, so there is a significant performance hit to not storing
* them.
*/
class OSPOS extends BaseConfig
{
public array $settings = [];
public string $commit_sha1 = '123abcd';
}