Issues (201)

Tools/TestAsset/ChildWithSameAttributesClass.php (1 issue)

Severity
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
The private property $parentPrivateAttribute is not used, and could be removed.
Loading history...
17
}
18