lithium\g11n\catalog\adapter\Code::__construct()
Constructor.
Parameters
-
array
$config
Available configuration options are:
'path'
: The path to the directory holding the data.'scope'
: Scope to use.
Returns
voidSource
public function __construct(array $config = []) {
$defaults = ['path' => null, 'scope' => null];
parent::__construct($config + $defaults);
}