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

StartController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 3
c 1
b 0
f 1
dl 0
loc 6
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A index() 0 4 1
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