mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-25 20:49:16 +00:00
1c515119b4
- Ensure that request-method is always lowercase. - Fixed spaces instead of tabs to comply with PSR-2.
15 lines
259 B
PHP
15 lines
259 B
PHP
<?php
|
|
namespace Pecee\SimpleRouter;
|
|
|
|
use Pecee\Http\Request;
|
|
|
|
interface IRouterBootManager
|
|
{
|
|
/**
|
|
* Called when router loads it's routes
|
|
*
|
|
* @param Request $request
|
|
* @return Request
|
|
*/
|
|
public function boot(Request $request);
|
|
} |