Skip to content

Commit

Permalink
Merge pull request #2779 from Instrye/develop
Browse files Browse the repository at this point in the history
[ci skip] _remap method must have return
  • Loading branch information
lonnieezell committed Mar 30, 2020
2 parents fa225ab + e17895b commit 1baa3e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions user_guide_src/source/incoming/controllers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,11 @@ be passed as a parameter to the ``_remap()`` method::
{
if ($method === 'some_method')
{
$this->$method();
return $this->$method();
}
else
{
$this->default_method();
return $this->default_method();
}
}

Expand Down

0 comments on commit 1baa3e0

Please sign in to comment.