Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: AnalysisResult.php
<?php declare(strict_types = 1); namespace PHPStan\Command; use PHPStan\Analyser\Error; class AnalysisResult { /** @var \PHPStan\Analyser\Error[] sorted by their file name, line number and message */ private $fileSpecificErrors; /** @var string[] */ private $notFileSpecificErrors; /** @var bool */ private $defaultLevelUsed; /** @var string */ private $currentDirectory; /** @var bool */ private $hasInferrablePropertyTypesFromConstructor; /** @var string|null */ private $projectConfigFile; /** * @param \PHPStan\Analyser\Error[] $fileSpecificErrors * @param string[] $notFileSpecificErrors * @param bool $defaultLevelUsed * @param string $currentDirectory * @param bool $hasInferrablePropertyTypesFromConstructor * @param string|null $projectConfigFile */ public function __construct( array $fileSpecificErrors, array $notFileSpecificErrors, bool $defaultLevelUsed, string $currentDirectory, bool $hasInferrablePropertyTypesFromConstructor, ?string $projectConfigFile ) { usort( $fileSpecificErrors, static function (Error $a, Error $b): int { return [ $a->getFile(), $a->getLine(), $a->getMessage(), ] <=> [ $b->getFile(), $b->getLine(), $b->getMessage(), ]; } ); $this->fileSpecificErrors = $fileSpecificErrors; $this->notFileSpecificErrors = $notFileSpecificErrors; $this->defaultLevelUsed = $defaultLevelUsed; $this->currentDirectory = $currentDirectory; $this->hasInferrablePropertyTypesFromConstructor = $hasInferrablePropertyTypesFromConstructor; $this->projectConfigFile = $projectConfigFile; } public function hasErrors(): bool { return $this->getTotalErrorsCount() > 0; } public function getTotalErrorsCount(): int { return count($this->fileSpecificErrors) + count($this->notFileSpecificErrors); } /** * @return \PHPStan\Analyser\Error[] sorted by their file name, line number and message */ public function getFileSpecificErrors(): array { return $this->fileSpecificErrors; } /** * @return string[] */ public function getNotFileSpecificErrors(): array { return $this->notFileSpecificErrors; } public function isDefaultLevelUsed(): bool { return $this->defaultLevelUsed; } /** * @deprecated Use \PHPStan\File\RelativePathHelper instead * @return string */ public function getCurrentDirectory(): string { return $this->currentDirectory; } public function hasInferrablePropertyTypesFromConstructor(): bool { return $this->hasInferrablePropertyTypesFromConstructor; } public function getProjectConfigFile(): ?string { return $this->projectConfigFile; } }