DefaultController   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A index() 0 3 1
1
<?php
2
3
namespace App\Controller\Hyperwallet;
4
5
use Symfony\Component\Routing\Annotation\Route;
6
use Symfony\Component\HttpFoundation\Response;
7
8
/**
9
 * Class DefaultController
10
 * @package App\Controller\Paypal
11
 *
12
 * @Route("/hyperwallet", name="hyperwallet-")
13
 */
14
class DefaultController extends AbstractController
15
{
16
    /**
17
     * @Route("/", name="index", methods={"GET"})
18
     *
19
     * @return Response
20
     */
21
    public function index()
22
    {
23
        return $this->render('hyperwallet/index.html.twig');
24
    }
25
}
26