Total Complexity | 6 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
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() { |
||
17 | } |
||
18 | private function keptPrivateMethod() { |
||
19 | } |
||
20 | } |
||
21 |
This check looks for private methods that have been defined, but are not used inside the class.