Skip to content

Commit

Permalink
Remove private from exception and error handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Holt committed Nov 27, 2015
1 parent 622642a commit 9252af2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CodeIgniterInstructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ namespace
set_error_handler( array( $this, "error_handler" ) );
}
private function exception_handler($exception) {
function exception_handler($exception) {
$this->client->SendException($exception);
}
private function error_handler( $errno, $errstr, $errfile, $errline) {
function error_handler( $errno, $errstr, $errfile, $errline) {
$this->client->SendError($errno, $errstr, $errfile, $errline);
}
Expand Down

0 comments on commit 9252af2

Please sign in to comment.