lithium\g11n\catalog\adapter\Php::__construct PHP Method

__construct() public method

Constructor.
public __construct ( array $config = [] ) : void
$config array Available configuration options are: - `'path'`: The path to the directory holding the data.
return void
    public function __construct(array $config = array())
    {
        $defaults = array('path' => null);
        parent::__construct($config + $defaults);
    }