Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/2649'
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Oct 3, 2012
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/DispatchableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@
use Zend\Stdlib\RequestInterface as Request;
use Zend\Stdlib\ResponseInterface as Response;

/**
* @category Zend
* @package Zend_Stdlib
*/
interface DispatchableInterface
{
/**
* Dispatch a request
*
* @param Request $request
* @param null|Response $response
* @return Response|mixed
*/
public function dispatch(Request $request, Response $response = null);
}

0 comments on commit 7501525

Please sign in to comment.