| Total Complexity | 6 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class ClassWithMethodsBeingRemoved |
||
| 8 | { |
||
| 9 | public function nameCaseChangePublicMethod() : void |
||
| 10 | { |
||
| 11 | } |
||
| 12 | public function keptPublicMethod() : void |
||
| 13 | { |
||
| 14 | } |
||
| 15 | protected function nameCaseChangeProtectedMethod() : void |
||
| 16 | { |
||
| 17 | } |
||
| 18 | protected function keptProtectedMethod() : void |
||
| 19 | { |
||
| 20 | } |
||
| 21 | private function nameCaseChangePrivateMethod() : void |
||
| 23 | } |
||
| 24 | private function keptPrivateMethod() : void |
||
| 26 | } |
||
| 27 | } |
||
| 28 |
This check looks for private methods that have been defined, but are not used inside the class.