rector/src/Autoloading/AdditionalAutoloader.php
Tomas Votruba 12c115e6f6 Updated Rector to commit 5193d43b644f9d059d9964ebcc6820181a7bca18
5193d43b64 [NodeTypeResolver] Remove unnecessary loop SourceLocator collection on DynamicSourceLocatorProvider (#5852)
2024-05-02 02:21:56 +00:00

44 lines
1.5 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Autoloading;
use Rector\Configuration\Option;
use Rector\Configuration\Parameter\SimpleParameterProvider;
use Rector\StaticReflection\DynamicSourceLocatorDecorator;
use RectorPrefix202405\Symfony\Component\Console\Input\InputInterface;
use RectorPrefix202405\Webmozart\Assert\Assert;
/**
* Should it pass autoload files/directories to PHPStan analyzer?
*/
final class AdditionalAutoloader
{
/**
* @readonly
* @var \Rector\StaticReflection\DynamicSourceLocatorDecorator
*/
private $dynamicSourceLocatorDecorator;
public function __construct(DynamicSourceLocatorDecorator $dynamicSourceLocatorDecorator)
{
$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;
}
Assert::fileExists($autoloadFile, \sprintf('Extra autoload file %s was not found', $autoloadFile));
require_once $autoloadFile;
}
public function autoloadPaths() : void
{
$autoloadPaths = SimpleParameterProvider::provideArrayParameter(Option::AUTOLOAD_PATHS);
$this->dynamicSourceLocatorDecorator->addPaths($autoloadPaths);
}
}