lithium\console\command\create\Controller::_use PHP Method

_use() protected method

Get the fully-qualified model class that is used by the controller.
protected _use ( string $request ) : string
$request string
return string
    protected function _use($request)
    {
        $request->params['command'] = 'model';
        return $this->_namespace($request) . '\\' . $this->_model($request);
    }