Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
snapshotpl committed Nov 13, 2013
1 parent dd4b94e commit 30ebfec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/Zend/Mvc/Controller/AbstractConsoleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public function setConsole(ConsoleAdaper $console)
public function dispatch(RequestInterface $request, ResponseInterface $response = null)
{
if (! $request instanceof ConsoleRequest) {
throw new InvalidArgumentException('Expected an Console request');
throw new InvalidArgumentException('Expected a Console request');
}

return parent::dispatch($request, $response);
}
}
}

0 comments on commit 30ebfec

Please sign in to comment.