Completed
Push — develop ( 84e8c9...0030f8 )
by Mike
09:36
created

tests/features/assets/singlefile/class.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
declare(strict_types = 1);
4
5
namespace Abc;
6
7
final class Def {
8
    public $ghij;
9
    protected $klmn = '';
10
    private $opqr = '';
11
12
    public function Ghi(): void {}
13
    protected function Jkl(): string { return ''; }
14
    private function Mno(): int { return 0; }
0 ignored issues
show
This method is not used, and could be removed.
Loading history...
15
}
16