diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2017-11-24 15:08:43 +0100 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2017-11-25 11:27:38 +0100 |
commit | 25e434bce4986b48bd72729a55aa1096e5a76be3 (patch) | |
tree | b254fafaf789b4ebcc980fec8281675415706750 /src/Exceptions/Handlers/HandlerInterface.php | |
parent | 6eea072376cc9fd1034342a0e1d2173681268138 (diff) |
Refactored ExceptionHandler
Diffstat (limited to 'src/Exceptions/Handlers/HandlerInterface.php')
-rw-r--r-- | src/Exceptions/Handlers/HandlerInterface.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Exceptions/Handlers/HandlerInterface.php b/src/Exceptions/Handlers/HandlerInterface.php new file mode 100644 index 00000000..9de33e1f --- /dev/null +++ b/src/Exceptions/Handlers/HandlerInterface.php @@ -0,0 +1,21 @@ +<?php + +namespace Engelsystem\Exceptions\Handlers; + +use Engelsystem\Http\Request; +use Throwable; + +interface HandlerInterface +{ + /** + * @param Request $request + * @param Throwable $e + */ + public function render($request, Throwable $e); + + /** + * @param Throwable $e + * @return + */ + public function report(Throwable $e); +} |