TestTwo   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
/*
4
 *
5
 * (c) Yaroslav Honcharuk <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Yarhon\RouteGuardBundle\Tests\Fixtures\Annotation;
12
13
/**
14
 * @author Yaroslav Honcharuk <[email protected]>
15
 *
16
 * @Annotation
17
 */
18
class TestTwo
19
{
20
    private $value;
21
22
    public function __construct(array $arguments)
23
    {
24
        $this->value = $arguments['value'];
25
    }
26
}
27