1 | <?php |
||
25 | class AmpViewController |
||
26 | { |
||
27 | /** |
||
28 | * @var Environment; |
||
29 | */ |
||
30 | private $twig; |
||
31 | |||
32 | /** |
||
33 | * @var AmpConverterInterface |
||
34 | */ |
||
35 | private $converter; |
||
36 | |||
37 | /** |
||
38 | * @var ThemeLoaderInterface |
||
39 | */ |
||
40 | private $themeLoader; |
||
41 | |||
42 | /** |
||
43 | * @param Environment $twig |
||
44 | * @param AmpConverterInterface $converter |
||
45 | * @param ThemeLoaderInterface $themeLoader |
||
46 | */ |
||
47 | public function __construct( |
||
56 | |||
57 | /** |
||
58 | * @param AmpInterface $object |
||
59 | * |
||
60 | * @return Response |
||
61 | */ |
||
62 | public function viewAction(AmpInterface $object) |
||
75 | } |
||
76 |