LandingpageController   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 24
ccs 0
cts 8
cp 0
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A indexAction() 0 4 1
A privacyAction() 0 4 1
1
<?php
2
3
namespace OSS\CoreBundle\Controller;
4
5
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
6
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7
use Symfony\Component\Routing\Annotation\Route;
8
9
/**
10
 * @Route("")
11
 */
12
class LandingpageController extends Controller
13
{
14
    /**
15
     * @return array
16
     *
17
     * @Route("", name="landingpage")
18
     * @Template
19
     */
20
    public function indexAction()
21
    {
22
        return array();
23
    }
24
25
    /**
26
     * @return array
27
     *
28
     * @Route("/privacy", name="privacy")
29
     * @Template
30
     */
31
    public function privacyAction()
32
    {
33
        return array();
34
    }
35
}
36