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

Cat::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace GraphQL\Tests\Executor\TestClasses;
6
7
class Cat
8
{
9
    /** @var string */
10
    public $name;
11
12
    /** @var bool */
13
    public $meows;
14
15
    public function __construct(string $name, bool $meows)
16
    {
17
        $this->name  = $name;
18
        $this->meows = $meows;
19
    }
20
}
21