Fix typos

This commit is contained in:
PJ Dietz 2014-06-29 10:51:51 -04:00
parent 4be631615c
commit 08cf2f4ec2
1 changed files with 3 additions and 3 deletions

View File

@ -17,9 +17,9 @@ namespace pjdietz\WellRESTed\Interfaces;
interface HandlerInterface {
/**
* @param RequestInterface $request The request to build a responce for.
* @param array|null $args Optional associate array of arguments.
* @return ResponseInterface|null
* @param RequestInterface $request The request to build a response for.
* @param array|null $args Optional map of arguments.
* @return ResponseInterface|null A response, or null if this handler will not handle.
*/
public function getResponse(RequestInterface $request, array $args = null);