| 1 | <?php |
||
| 7 | abstract class AbstractController |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var Twig_Environment Twig |
||
| 11 | */ |
||
| 12 | protected $twig; |
||
| 13 | |||
| 14 | public function __construct(Twig_Environment $twig) |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $name View name |
||
| 21 | * @param array $data Data sent to view |
||
| 22 | * |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | protected function view($name, $data = []) |
||
| 29 | } |
||
| 30 |