$loaded
$loaded : array>
Loaded params.
Config class.
The Config
class provides a simple and efficient way to access configuration
parameters stored in PHP files within the config
directory of your application.
get(string $key, mixed $default = null) : mixed
Get the config parameter.
Retrieve a configuration parameter by specifying its key. The method will
look for the parameter in the corresponding configuration file within the
config
directory of your application.
string | $key | Holds the config key, which may include dots for nested values. |
mixed | $default | Holds the default value to return if the key is not found. |
Return the value of the configuration parameter, or the default value if not found.
loadConfigFile(string $configFile) : array<string,mixed>
Load the configuration file.
Load a configuration file from the config
directory of your application.
string | $configFile | Holds the configuration file name. |
Return an array containing the configuration parameters.