UnusedMethod
A private method is never called within the class.
Example
Section titled “Example”<?phpclass Formatter { private function pad(string $s): string { // never called return str_pad($s, 10); }}How to fix
Section titled “How to fix”Remove the method or call it from within the class.