TestOne   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
use Doctrine\Common\Annotations\Annotation;
14
15
/**
16
 * @author Yaroslav Honcharuk <[email protected]>
17
 *
18
 * @Annotation
19
 */
20
class TestOne
21
{
22
    private $value;
23
24
    public function __construct(array $arguments)
25
    {
26
        $this->value = $arguments['value'];
27
    }
28
}
29