\Omega\Config Config

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.

Summary

Methods
Properties
Constants
get
No public properties found
No public constants found
No protected methods found
No protected properties found
No protected constants found
withDots
loadConfigFile
loaded
No private constants found

Properties

$loaded

$loaded : array>

Loaded params.

Type

array<string, array<string, mixed>> — Holds an array of loaded parameter.

Methods

get()

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.

Parameters

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.

Returns

mixed —

Return the value of the configuration parameter, or the default value if not found.

withDots()

withDots(array  $array, array  $segments) : mixed

Retrieve config key with dots notations.

Helper method to access nested configuration values using dot notation.

Parameters

array $array

Holds an array of key.

array $segments

Holds an array of arguments.

Returns

mixed —

loadConfigFile()

loadConfigFile(string  $configFile) : array<string,mixed>

Load the configuration file.

Load a configuration file from the config directory of your application.

Parameters

string $configFile

Holds the configuration file name.

Returns

array

Return an array containing the configuration parameters.