Config class

Managing the configurations

package Default

 Methods

Creating the configurations

create(string|null $env = null) : void
Static

Load the configurations from CONFIG_DIR/config-config-$env.php. If the environment is not specified, load the configurations from CONFIG_DIR/config.php. Environment-independent configurations are defined in CONFIG_DIR/config-common.php.

Parameters

$env

stringnull

environment

Exceptions

\Exception thrown when the configuration file does not exist

Get the configurations

get(string|null $key = null, mixed $default = null) : mixed
Static

If no key is specified, all configurations are returned. If the key is passed dot-delimited, it is interpreted as an array path.

Parameters

$key

stringnull

configuration key

$default

mixed

default value if there is no value specified in the key

Returns

mixedconfigurations

 Properties

 

configurations

$config : \Kore\array<mixed>

Default

Static

An array of configuration values loaded from the configuration file.