Skip to content

UnusedFunction

A function is defined but never called.

<?php
function legacyHelper(): void { // never called
// ...
}

Remove the function or add a call to it.