Passed
Push — master ( 66adc4...f8e97d )
by Alexander
10:22
created

Post3   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
wmc 1
eloc 4
dl 0
loc 8
rs 10
c 2
b 1
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Arrays\Tests;
6
7
final class Post3
8
{
9
    public $id = 33;
10
    public $subObject;
11
12
    public function __construct()
13
    {
14
        $this->subObject = new Post2();
15
    }
16
}
17