Viewing file: UndefinedVariableAnalyzer.php (1.17 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Enlightn\Enlightn\Analyzers\Reliability;
use Enlightn\Enlightn\Analyzers\Concerns\ParsesPHPStanAnalysis; use Enlightn\Enlightn\PHPStan;
class UndefinedVariableAnalyzer extends ReliabilityAnalyzer { use ParsesPHPStanAnalysis;
/** * The title describing the analyzer. * * @var string|null */ public $title = "Your application does not reference undefined variables.";
/** * The severity of the analyzer. * * @var string|null */ public $severity = self::SEVERITY_MAJOR;
/** * The time to fix in minutes. * * @var int|null */ public $timeToFix = 5;
/** * Get the error message describing the analyzer insights. * * @return string */ public function errorMessage() { return "Your application seems to reference undefined variables."; }
/** * Execute the analyzer. * * @param \Enlightn\Enlightn\PHPStan $PHPStan * @return void */ public function handle(PHPStan $PHPStan) { $this->matchPHPStanAnalysis($PHPStan, [ 'Undefined variable*', 'Variable * might not be defined*', ]); } }
|