Def::Mno()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 1
rs 10
c 0
b 0
f 0
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
Unused Code introduced by
This method is not used, and could be removed.
Loading history...
15
}
16