ChildWithSameAttributesClass
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 10
c 0
b 0
f 0
wmc 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\DBAL\Tests\Tools\TestAsset;
6
7
final class ChildWithSameAttributesClass extends ParentClass
8
{
9
    /** @var int */
10
    public $parentPublicAttribute = 4;
11
12
    /** @var int */
13
    protected $parentProtectedAttribute = 5;
14
15
    /** @var int */
16
    private $parentPrivateAttribute = 6;
0 ignored issues
show
introduced by
The private property $parentPrivateAttribute is not used, and could be removed.
Loading history...
17
}
18