lithium\console\command\Create::_init PHP Method

_init() protected method

Class initializer. Parses template and sets up params that need to be filled.
protected _init ( ) : void
return void
    protected function _init()
    {
        parent::_init();
        $this->library = $this->library ?: true;
        $defaults = array('prefix' => null, 'path' => null);
        $this->_library = (array) Libraries::get($this->library) + $defaults;
    }