lithium\console\command\Create::_init()

protected method

Class initializer. Parses template and sets up params that need to be filled.

Returns

void

Source

	protected function _init() {
		parent::_init();
		$this->library = $this->library ?: true;
		$defaults = ['prefix' => null, 'path' => null];
		$this->_library = (array) Libraries::get($this->library) + $defaults;
	}