1 | <?php |
||
12 | class Controller extends AbstractStrategy |
||
13 | { |
||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $controllers; |
||
18 | |||
19 | /** |
||
20 | * {@inheritDoc} |
||
21 | */ |
||
22 | public function shouldCache(MvcEvent $event) |
||
34 | |||
35 | /** |
||
36 | * @return array |
||
37 | */ |
||
38 | public function getControllers() |
||
42 | |||
43 | /** |
||
44 | * @param array $controllers |
||
45 | * @return $this |
||
46 | */ |
||
47 | public function setControllers(array $controllers) |
||
52 | } |
||
53 |