lithium\g11n\catalog\adapter\Php::_init()
Initializer. Checks if the configured path exists.
Returns
voidSource
protected function _init() {
parent::_init();
if (!is_dir($this->_config['path'])) {
$message = "Php directory does not exist at path `{$this->_config['path']}`.";
throw new ConfigException($message);
}
}