| 1 | <?php |
||
| 14 | class ApplicationStrategy implements StrategyInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * {@inheritdoc} |
||
| 18 | */ |
||
| 19 | public function getCallable(Route $route, array $vars) |
||
| 33 | |||
| 34 | 6 | /** |
|
| 35 | 12 | * {@inheritdoc} |
|
| 36 | */ |
||
| 37 | 12 | public function getNotFoundDecorator(NotFoundException $exception) |
|
| 41 | |||
| 42 | 12 | /** |
|
| 43 | 3 | * {@inheritdoc} |
|
| 44 | 12 | */ |
|
| 45 | public function getMethodNotAllowedDecorator(MethodNotAllowedException $exception) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritdoc} |
||
| 52 | 3 | */ |
|
| 53 | public function getExceptionDecorator(Exception $exception) |
||
| 57 | } |
||
| 58 |