| 1 | <?php |
||
| 18 | class ChangelogController extends Controller |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var CommonMarkConverter |
||
| 22 | */ |
||
| 23 | private $markConverter; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var Twig_Environment |
||
| 27 | */ |
||
| 28 | private $twig; |
||
| 29 | |||
| 30 | public function __construct(CommonMarkConverter $markConverter, Twig_Environment $twig) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @Route(path="/changelog") |
||
| 38 | */ |
||
| 39 | public function indexAction() |
||
| 53 | } |
||
| 54 |