Skip to content

UnusedProperty

A private property is never read within the class.

<?php
class Config {
private string $debug = 'off'; // never read
}

Remove the property or read it in the class body.