Skip to content

Commit

Permalink
remove typehint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwindell committed Jul 20, 2012
1 parent 2fb3a12 commit d32c9b0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions library/Zend/Mvc/Controller/AbstractRestfulController.php
Expand Up @@ -30,7 +30,6 @@
use Zend\Mvc\Exception;
use Zend\Mvc\InjectApplicationEventInterface;
use Zend\Mvc\MvcEvent;
use Zend\Mvc\Router\Http\RouteMatch;
use Zend\ServiceManager\ServiceLocatorAwareInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Stdlib\DispatchableInterface as Dispatchable;
Expand Down Expand Up @@ -254,9 +253,9 @@ public function processPostData(Request $request)
* Process put data and call update
*
* @param Request $request
* @param RouteMatch $routeMatch
* @param $routeMatch
*/
public function processPutData(Request $request, RouteMatch $routeMatch)
public function processPutData(Request $request, $routeMatch)
{
if (null === $id = $routeMatch->getParam('id')) {
if (!($id = $request->getQuery()->get('id', false))) {
Expand Down

0 comments on commit d32c9b0

Please sign in to comment.