Completed
Push — master ( 6366df...fbe022 )
by Kirill
23s queued 19s
created

NamedArgumentConstructorFixture   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
c 1
b 0
f 0
dl 0
loc 11
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
/**
4
 * This file is part of Spiral Framework package.
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
declare(strict_types=1);
11
12
namespace Spiral\Tests\Attributes\Instantiator\Fixtures;
13
14
class NamedArgumentConstructorFixture
15
{
16
    public $a;
17
    public $b;
18
    public $c;
19
20
    public function __construct($a = null, $b = null, $c = null)
21
    {
22
        $this->a = $a;
23
        $this->b = $b;
24
        $this->c = $c;
25
    }
26
}
27