Completed
Pull Request — master (#30)
by Marco
01:47
created

nameCaseChangeProtectedMethod()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
rs 10
cc 1
eloc 0
nc 1
nop 0
1
<?php
2
declare(strict_types=1);
3
4
namespace RoaveTestAsset;
5
6
class ClassWithMethodsBeingRemoved
7
{
8
    public function nameCaseChangePublicMethod() {
9
    }
10
    public function keptPublicMethod() {
11
    }
12
    protected function nameCaseChangeProtectedMethod() {
13
    }
14
    protected function keptProtectedMethod() {
15
    }
16
    private function nameCaseChangePrivateMethod() {
0 ignored issues
show
Unused Code introduced by
The method nameCaseChangePrivateMethod() is not used, and could be removed.

This check looks for private methods that have been defined, but are not used inside the class.

Loading history...
17
    }
18
    private function keptPrivateMethod() {
0 ignored issues
show
Unused Code introduced by
The method keptPrivateMethod() is not used, and could be removed.

This check looks for private methods that have been defined, but are not used inside the class.

Loading history...
19
    }
20
}
21