Failed Conditions
Push — master ( 9327e7...7f99bf )
by Vladimir
04:21
created

Special   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace GraphQL\Tests\Executor\TestClasses;
6
7
class Special
8
{
9
    /** @var string */
10
    public $value;
11
12
    /**
13
     * @param string $value
14
     */
15
    public function __construct($value)
16
    {
17
        $this->value = $value;
18
    }
19
}
20