Completed
Push — develop ( 8eb671...133594 )
by Mike
19:30 queued 09:24
created

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

private methods are used.

Unused Code Minor

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