UnusedProperty
A private property is never read within the class.
Example
Section titled “Example”<?phpclass Config { private string $debug = 'off'; // never read}How to fix
Section titled “How to fix”Remove the property or read it in the class body.