![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/rector/rector/packages/ChangesReporting/ValueObjectFactory/ |
<?php declare (strict_types=1); namespace Rector\ChangesReporting\ValueObjectFactory; use PHPStan\AnalysedCodeException; use Rector\Core\Error\ExceptionCorrector; use Rector\Core\FileSystem\FilePathHelper; use Rector\Core\ValueObject\Error\SystemError; final class ErrorFactory { /** * @readonly * @var \Rector\Core\Error\ExceptionCorrector */ private $exceptionCorrector; /** * @readonly * @var \Rector\Core\FileSystem\FilePathHelper */ private $filePathHelper; public function __construct(ExceptionCorrector $exceptionCorrector, FilePathHelper $filePathHelper) { $this->exceptionCorrector = $exceptionCorrector; $this->filePathHelper = $filePathHelper; } public function createAutoloadError(AnalysedCodeException $analysedCodeException, string $filePath) : SystemError { $message = $this->exceptionCorrector->getAutoloadExceptionMessageAndAddLocation($analysedCodeException); $relativeFilePath = $this->filePathHelper->relativePath($filePath); return new SystemError($message, $relativeFilePath); } }