HomeController.php 278 B

123456789101112131415161718
  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. }
  13. }