Passed
Push — main ( 69d23a...06cd81 )
by Karl
24:17
created

StartController::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 2
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace App\Controller\Kassabok;
4
5
# Generic use statements
6
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
7
use Symfony\Component\HttpFoundation\Response;
8
use Symfony\Component\Routing\Attribute\Route;
9
10
class StartController extends AbstractController
11
{
12
    #[Route('/proj/', name: 'kassabok_start')]
13
    public function index(): Response
14
    {
15
        return $this->render('kassabok/base.html.twig');
16
    }
17
}
18