PHP Class Cartalyst\Sentinel\Native\ConfigRepository

Inheritance: implements ArrayAcces\ArrayAccess
Datei anzeigen Open project: cartalyst/sentinel

Protected Properties

Property Type Description
$config array The config data.
$file string The config file path.

Public Methods

Method Description
__construct ( string $file = null ) : void Constructor.
offsetExists ( $key ) {@inheritDoc}
offsetGet ( $key ) {@inheritDoc}
offsetSet ( $key, $value ) {@inheritDoc}
offsetUnset ( $key ) {@inheritDoc}

Protected Methods

Method Description
load ( ) : void Load the configuration file.

Method Details

__construct() public method

Constructor.
public __construct ( string $file = null ) : void
$file string
return void

load() protected method

Load the configuration file.
protected load ( ) : void
return void

offsetExists() public method

{@inheritDoc}
public offsetExists ( $key )

offsetGet() public method

{@inheritDoc}
public offsetGet ( $key )

offsetSet() public method

{@inheritDoc}
public offsetSet ( $key, $value )

offsetUnset() public method

{@inheritDoc}
public offsetUnset ( $key )

Property Details

$config protected_oe property

The config data.
protected array $config
return array

$file protected_oe property

The config file path.
protected string $file
return string