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

Def   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A Ghi() 0 1 1
A Jkl() 0 1 1
A Mno() 0 1 1
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