Jelix\Core\Config\Compiler::__construct PHP Method

__construct() public method

public __construct ( string $configFile = '', string $pseudoScriptName = '', boolean $isCli = null )
$configFile string the name and path of the config file related to config dir of the app
$pseudoScriptName string the name of the entry point, relative to the base path, corresponding to the readed configuration. It should start with a leading / for non cli script.
$isCli boolean indicate if the configuration to read is for a CLI script or no
    function __construct($configFile = '', $pseudoScriptName = '', $isCli = null)
    {
        $this->isCli = $isCli !== null ? $isCli : \jServer::isCLI();
        $this->pseudoScriptName = $pseudoScriptName;
        $this->configFileName = $configFile;
    }