HomeController.php 326 B

1234567891011121314151617181920
  1. <?php
  2. namespace demo\Controllers;
  3. use Silex\Application;
  4. /**
  5. * Class HomeController demonstrates use of Twig
  6. *
  7. * @package demo\Controllers
  8. */
  9. class HomeController {
  10. public function home(Application $app) {
  11. return $app['twig']->render('index.html.twig', [
  12. 'nav' => $app['nav_builder']->build(),
  13. ]);
  14. }
  15. }