1 | <?php |
||
9 | class RouteControllerManager |
||
10 | { |
||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $paths; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $cacheFile; |
||
20 | |||
21 | public function __construct( |
||
41 | |||
42 | /** |
||
43 | * @param boolean $debug |
||
44 | * @return bool |
||
45 | */ |
||
46 | public function isCacheValid($debug) |
||
54 | |||
55 | /** |
||
56 | * @param AnnotationManager $annotationManager |
||
57 | * @param ServiceManager $serviceManager |
||
58 | * @param RouteManager $routeManager |
||
59 | * @param Standard $prettyPrinter |
||
60 | */ |
||
61 | public function updateCache( |
||
85 | |||
86 | /** |
||
87 | * @param Application $app |
||
88 | * @throws \LogicException |
||
89 | */ |
||
90 | public function loadCache(Application $app) |
||
98 | } |
||
99 |