Projekt

Obecné

Profil

Stáhnout (370 Bajtů) Statistiky
| Větev: | Revize:
1
<?php
2

    
3
namespace App\Controller;
4

    
5
use Symfony\Component\Routing\Annotation\Route;
6
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
7

    
8
class HomeController extends AbstractController {
9
    /**
10
     * Home page controller.
11
     *
12
     * @Route("/", name="home")
13
     */
14
    public function index() {
15
        return $this->render('index.html.twig');
16
    }
17
}
(3-3/3)