lithium\console\command\create\Mock::_namespace()

protected method

Get the namespace for the mock.

Parameters

  • string $request
  • array|string $options

Returns

string

Source

	protected function _namespace($request, $options = array()) {
		$request->params['command'] = $request->action;
		return parent::_namespace($request, array('prepend' => 'tests.mocks.'));
	}