[TASK] Made abstract ExceptionHandler class an interface.

- Updated documentation to reflect new changes.
This commit is contained in:
Simon Sessingø
2016-04-09 09:42:57 +02:00
parent 257875c6f9
commit 7234415e24
4 changed files with 17 additions and 14 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
namespace Pecee\Handler;
use Pecee\Http\Request;
use Pecee\SimpleRouter\RouterEntry;
interface IExceptionHandler {
public function handleError(Request $request, RouterEntry $router = null, \Exception $error);
}