MIR0507
UnusedClass
A class is declared but never referenced anywhere in the analyzed code.
Example
Section titled “Example”<?phpclass Helper {} // never usedHow to fix
Section titled “How to fix”Remove the class, or reference it.
MIR0507
A class is declared but never referenced anywhere in the analyzed code.
<?phpclass Helper {} // never usedRemove the class, or reference it.