Skip to content

Commit

Permalink
Controllers return type
Browse files Browse the repository at this point in the history
  • Loading branch information
jrdnrc committed Oct 24, 2018
1 parent e184149 commit 0727c51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Below is an example of a basic controller class. Note that the controller extend
* Show the profile for the given user.
*
* @param int $id
* @return Response
* @return View
*/
public function show($id)
{
Expand Down Expand Up @@ -84,7 +84,7 @@ If you would like to define a controller that only handles a single action, you
* Show the profile for the given user.
*
* @param int $id
* @return Response
* @return View
*/
public function __invoke($id)
{
Expand Down

0 comments on commit 0727c51

Please sign in to comment.