Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions en/development/errors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ An example would be::
{
public function _displayError($error, $debug)
{
return 'There has been an error!';
echo 'There has been an error!';
}
public function _displayException($exception)
{
return 'There has been an exception!';
echo 'There has been an exception!';
}
}

Expand Down