Do not use 'self' construct referring to current class.
All checks were successful
The build was successful.

This commit is contained in:
2019-06-03 12:23:42 +02:00
parent 5f90f3e8e1
commit 3184b95a09
2 changed files with 10 additions and 10 deletions

View File

@@ -5,7 +5,7 @@ class ExceptionHandler {
}
public static void handleException(Exception $e) {
self::printException($e);
ExceptionHandler::printException($e);
}
}