lithium\g11n\catalog\adapter\Code::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( array $config = [] ) : void
$config array Available configuration options are: - `'path'`: The path to the directory holding the data. - `'scope'`: Scope to use.
Результат void
    public function __construct(array $config = array())
    {
        $defaults = array('path' => null, 'scope' => null);
        parent::__construct($config + $defaults);
    }