Settings Class
Aurora\Settings Namespace
Interfaces
Properties
parameters
Parameter array
protected $parameters = []: array
Methods
load
Load settings from the .env file
Return Value
$this
Signature
public function load()
purge
Purge the settings cache
Return Value
$this
Signature
public function purge()
get
Get a configuration value using dot notation (APP_VERSION becomes app.version)
Parameters
-
string
$name
— Value name -
mixed
$default
— Default value
Return Value
mixed
Signature
public function get(string $name, mixed $default = '')
process
Process a configuration value
Parameters
-
string
$value
— Raw configuration value
Return Value
string
Signature
protected function process(string $value): string