1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 18:48:03 +01:00
psalm/src/Psalm/FileBasedPluginAdapter.php
2019-04-29 12:07:34 -04:00

59 lines
1.5 KiB
PHP

<?php
namespace Psalm;
use Psalm\Internal\Analyzer\ClassLikeAnalyzer;
use Psalm\Internal\Scanner\FileScanner;
use SimpleXMLElement;
class FileBasedPluginAdapter implements Plugin\PluginEntryPointInterface
{
/** @var string */
private $path;
/** @var Codebase */
private $codebase;
/** @var Config */
private $config;
public function __construct(string $path, Config $config, Codebase $codebase)
{
if (!$path) {
throw new \UnexpectedValueException('$path cannot be empty');
}
$this->path = $path;
$this->config = $config;
$this->codebase = $codebase;
}
/** @return void */
public function __invoke(Plugin\RegistrationInterface $registration, SimpleXMLElement $config = null)
{
$fq_class_name = $this->getPluginClassForPath($this->path);
/** @psalm-suppress UnresolvableInclude */
require_once($this->path);
$registration->registerHooksFromClass($fq_class_name);
}
private function getPluginClassForPath(string $path): string
{
$codebase = $this->codebase;
$file_storage = $codebase->createFileStorageForPath($path);
$file_to_scan = new FileScanner($path, $this->config->shortenFileName($path), true);
$file_to_scan->scan(
$codebase,
$file_storage
);
$declared_classes = ClassLikeAnalyzer::getClassesForFile($codebase, $path);
$fq_class_name = reset($declared_classes);
return $fq_class_name;
}
}