mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-07-10 21:32:13 +00:00
ce276bd5b7
- Easier rewrite management. - Optimisations. - Updated documentation.
15 lines
267 B
PHP
15 lines
267 B
PHP
<?php
|
|
namespace Pecee\Handlers;
|
|
|
|
use Pecee\Http\Request;
|
|
|
|
interface IExceptionHandler
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
* @param \Exception $error
|
|
* @return Request|null
|
|
*/
|
|
public function handleError(Request $request, \Exception $error);
|
|
|
|
} |