Projekt

Obecné

Profil

Stáhnout (386 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 HeatmapController extends AbstractController {
9

    
10
    /**
11
     * @Route("/heatmap")
12
     */
13
    public function index() {
14

    
15
        return $this->render('heatmap.html.twig', [
16
            'title' => 'Hello World!',
17
        ]);
18
    }
19
}
(2-2/2)