Skip to content

Commit

Permalink
#285 - correcting the name of the param passed to the methods of the …
Browse files Browse the repository at this point in the history
…ControllerInterface
  • Loading branch information
alphadevx committed Feb 12, 2017
1 parent 6bd92a9 commit 2af28f8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Alpha/Controller/ControllerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function doHEAD($request);
* @since Alpha\Util\Http\Response
* @since 1.0
*/
public function doGET($params);
public function doGET($request);

/**
* Handles POST HTTP requests.
Expand All @@ -75,7 +75,7 @@ public function doGET($params);
* @since Alpha\Util\Http\Response
* @since 1.0
*/
public function doPOST($params);
public function doPOST($request);

/**
* Handles PUT HTTP requests.
Expand All @@ -85,7 +85,7 @@ public function doPOST($params);
* @since Alpha\Util\Http\Response
* @since 1.0
*/
public function doPUT($params);
public function doPUT($request);

/**
* Handles PATCH HTTP requests.
Expand All @@ -95,7 +95,7 @@ public function doPUT($params);
* @since Alpha\Util\Http\Response
* @since 1.0
*/
public function doPATCH($params);
public function doPATCH($request);

/**
* Handles DELETE HTTP requests.
Expand All @@ -105,7 +105,7 @@ public function doPATCH($params);
* @since Alpha\Util\Http\Response
* @since 1.0
*/
public function doDELETE($params);
public function doDELETE($request);

/**
* Handles OPTIONS HTTP requests.
Expand All @@ -115,7 +115,7 @@ public function doDELETE($params);
* @since Alpha\Util\Http\Response
* @since 1.0
*/
public function doOPTIONS($params);
public function doOPTIONS($request);

/**
* Handles TRACE HTTP requests.
Expand All @@ -125,5 +125,5 @@ public function doOPTIONS($params);
* @since Alpha\Util\Http\Response
* @since 2.0.2
*/
public function doTRACE($params);
public function doTRACE($request);
}

0 comments on commit 2af28f8

Please sign in to comment.