Viewing file: InvalidPropertyAccessAnalyzer.php (1.25 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Enlightn\Enlightn\Analyzers\Reliability;
use Enlightn\Enlightn\Analyzers\Concerns\ParsesPHPStanAnalysis; use Enlightn\Enlightn\PHPStan;
class InvalidPropertyAccessAnalyzer extends ReliabilityAnalyzer { use ParsesPHPStanAnalysis;
/** * The title describing the analyzer. * * @var string|null */ public $title = "Your application does not access class properties in an invalid manner.";
/** * 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 class properties that are either undefined " ."or not accessible."; }
/** * Execute the analyzer. * * @param \Enlightn\Enlightn\PHPStan $PHPStan * @return void */ public function handle(PHPStan $PHPStan) { $this->matchPHPStanAnalysis($PHPStan, [ 'Access to * property *', 'Cannot access property * on *', ]); } }
|