UnusedFunction
A function is defined but never called.
Example
Section titled “Example”<?phpfunction legacyHelper(): void { // never called // ...}How to fix
Section titled “How to fix”Remove the function or add a call to it.
A function is defined but never called.
<?phpfunction legacyHelper(): void { // never called // ...}Remove the function or add a call to it.