Skip to content

UnusedMethod

A private method is never called within the class.

<?php
class Formatter {
private function pad(string $s): string { // never called
return str_pad($s, 10);
}
}

Remove the method or call it from within the class.