| 1 | <?php |
||
| 14 | class ApplicationStrategy implements StrategyInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * {@inheritdoc} |
||
| 18 | */ |
||
| 19 | public function getExecutionChain(Route $route, array $vars) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | 3 | public function getNotFoundDecorator(NotFoundException $exception) |
|
| 56 | |||
| 57 | /** |
||
| 58 | * {@inheritdoc} |
||
| 59 | */ |
||
| 60 | 3 | public function getMethodNotAllowedDecorator(MethodNotAllowedException $exception) |
|
| 64 | |||
| 65 | /** |
||
| 66 | * {@inheritdoc} |
||
| 67 | */ |
||
| 68 | 3 | public function getExceptionDecorator(Exception $exception) |
|
| 72 | } |
||
| 73 |