| 1 | <?php |
||
| 12 | abstract class ViewListener |
||
| 13 | { |
||
| 14 | 12 | public function onKernelView(GetResponseForControllerResultEvent $event) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * @param View $view |
||
| 40 | * @param string $format |
||
| 41 | * |
||
| 42 | * @return bool |
||
| 43 | */ |
||
| 44 | abstract protected function supports(View $view, $format); |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param View $view |
||
| 48 | * @param string $format |
||
| 49 | * |
||
| 50 | * @return string |
||
| 51 | */ |
||
| 52 | abstract protected function getContent(View $view, $format); |
||
| 53 | } |
||
| 54 |