File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/src/Autoloading/AdditionalAutoloader.php
Back
<?php declare (strict_types=1); namespace Rector\Core\Autoloading; use Rector\Core\Configuration\Option; use Rector\Core\StaticReflection\DynamicSourceLocatorDecorator; use RectorPrefix202208\Symfony\Component\Console\Input\InputInterface; use RectorPrefix202208\Symplify\PackageBuilder\Parameter\ParameterProvider; use RectorPrefix202208\Symplify\SmartFileSystem\FileSystemGuard; /** * Should it pass autoload files/directories to PHPStan analyzer? */ final class AdditionalAutoloader { /** * @readonly * @var \Symplify\SmartFileSystem\FileSystemGuard */ private $fileSystemGuard; /** * @readonly * @var \Symplify\PackageBuilder\Parameter\ParameterProvider */ private $parameterProvider; /** * @readonly * @var \Rector\Core\StaticReflection\DynamicSourceLocatorDecorator */ private $dynamicSourceLocatorDecorator; public function __construct(FileSystemGuard $fileSystemGuard, ParameterProvider $parameterProvider, DynamicSourceLocatorDecorator $dynamicSourceLocatorDecorator) { $this->fileSystemGuard = $fileSystemGuard; $this->parameterProvider = $parameterProvider; $this->dynamicSourceLocatorDecorator = $dynamicSourceLocatorDecorator; } public function autoloadInput(InputInterface $input) : void { if (!$input->hasOption(Option::AUTOLOAD_FILE)) { return; } /** @var string|null $autoloadFile */ $autoloadFile = $input->getOption(Option::AUTOLOAD_FILE); if ($autoloadFile === null) { return; } $this->fileSystemGuard->ensureFileExists($autoloadFile, 'Extra autoload'); require_once $autoloadFile; } public function autoloadPaths() : void { $autoloadPaths = $this->parameterProvider->provideArrayParameter(Option::AUTOLOAD_PATHS); $this->dynamicSourceLocatorDecorator->addPaths($autoloadPaths); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings