[FEATURE] Added custom boot managers

This commit is contained in:
Simon Sessingø
2016-03-19 16:14:36 +01:00
parent 5483ffe458
commit b29f2ce37d
7 changed files with 131 additions and 42 deletions
@@ -0,0 +1,10 @@
<?php
namespace Pecee\SimpleRouter;
use Pecee\Http\Request;
abstract class RouterBootManager {
abstract public function boot(Request $request);
}