lithium\console\command\Create::_init()
Overrides
lithium\console\Command::_init()
Class initializer. Parses template and sets up params that need to be filled.
Returns
voidSource
protected function _init() {
parent::_init();
$this->library = $this->library ?: true;
$defaults = ['prefix' => null, 'path' => null];
$this->_library = (array) Libraries::get($this->library) + $defaults;
}