Passed
Push — master ( 71ac2a...8d79cc )
by Dmitriy
02:35
created

tests/Support/Stub/ThreeProperties.php (1 issue)

Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Yii\Debug\Tests\Support\Stub;
6
7
class ThreeProperties
8
{
9
    public $first = 'first';
10
    protected $second = 'second';
11
    private string $third = 'third';
0 ignored issues
show
The private property $third is not used, and could be removed.
Loading history...
12
}
13