Class Config
Creates an array from the config files in the provided directories.
- Mini\Config\Config implements ArrayAccess, JsonSerializable, Serializable
Namespace: Mini\Config
Package: Mini\Config
Author: Andrew Breksa (abreksa4@gmail.com)
Located at Config.php
Package: Mini\Config
Author: Andrew Breksa (abreksa4@gmail.com)
Located at Config.php
public
|
|
public
|
|
public
|
#
registerHandler( string|array $extension, callable $handler )
Register a handler. Takes a file extension to match files by, and a function to process the file and return an array. |
public
|
|
public
|
|
public
|
#
removeHandler( string $extension )
Removes a handler from the internal handler array, stopping the parsing of files with that extension. |
public
boolean
|
|
public
boolean
|
|
public
mixed
|
|
public
mixed
|
|
public
|
|
public
|
|
public
|
|
public
|
|
public
string
|
|
public
mixed
|
|
public
|
protected
array
|
$config
The config array, holds the config from all merged config files. |
|
protected
array
|
$directories
The array of targets for Config to include in the the config array. |
#
[]
|
protected
array
|
$files
The array of files for Config to include in the the config array. |
#
[]
|
protected
array
|
$handlers
The array of handlers, as 'extension' => 'callable'. |