TestOne::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 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