> */ private $additionalFileTypeScanners = []; /** * @var array> */ private $additionalFileTypeAnalyzers = []; /** * @var list */ private $additionalFileExtensions = []; /** * @internal */ public function __construct(Config $config, Codebase $codebase) { $this->config = $config; $this->codebase = $codebase; } public function addStubFile(string $file_name): void { $this->config->addStubFile($file_name); } public function registerHooksFromClass(string $handler): void { if (!class_exists($handler, false)) { throw new InvalidArgumentException('Plugins must be loaded before registration'); } $this->config->eventDispatcher->registerClass($handler); if (is_subclass_of($handler, LegacyPropertyExistenceProviderInterface::class) || is_subclass_of($handler, PropertyExistenceProviderInterface::class) ) { $this->codebase->properties->property_existence_provider->registerClass($handler); } if (is_subclass_of($handler, LegacyPropertyVisibilityProviderInterface::class) || is_subclass_of($handler, PropertyVisibilityProviderInterface::class) ) { $this->codebase->properties->property_visibility_provider->registerClass($handler); } if (is_subclass_of($handler, LegacyPropertyTypeProviderInterface::class) || is_subclass_of($handler, PropertyTypeProviderInterface::class) ) { $this->codebase->properties->property_type_provider->registerClass($handler); } if (is_subclass_of($handler, LegacyMethodExistenceProviderInterface::class) || is_subclass_of($handler, MethodExistenceProviderInterface::class) ) { $this->codebase->methods->existence_provider->registerClass($handler); } if (is_subclass_of($handler, LegacyMethodVisibilityProviderInterface::class) || is_subclass_of($handler, MethodVisibilityProviderInterface::class) ) { $this->codebase->methods->visibility_provider->registerClass($handler); } if (is_subclass_of($handler, LegacyMethodReturnTypeProviderInterface::class) || is_subclass_of($handler, MethodReturnTypeProviderInterface::class) ) { $this->codebase->methods->return_type_provider->registerClass($handler); } if (is_subclass_of($handler, LegacyMethodParamsProviderInterface::class) || is_subclass_of($handler, MethodParamsProviderInterface::class) ) { $this->codebase->methods->params_provider->registerClass($handler); } if (is_subclass_of($handler, LegacyFunctionExistenceProviderInterface::class) || is_subclass_of($handler, FunctionExistenceProviderInterface::class) ) { $this->codebase->functions->existence_provider->registerClass($handler); } if (is_subclass_of($handler, LegacyFunctionParamsProviderInterface::class) || is_subclass_of($handler, FunctionParamsProviderInterface::class) ) { $this->codebase->functions->params_provider->registerClass($handler); } if (is_subclass_of($handler, LegacyFunctionReturnTypeProviderInterface::class) || is_subclass_of($handler, FunctionReturnTypeProviderInterface::class) ) { $this->codebase->functions->return_type_provider->registerClass($handler); } } /** * @param string $fileExtension e.g. `'html'` * @param class-string $className */ public function addFileTypeScanner(string $fileExtension, string $className): void { if (!class_exists($className) || !is_a($className, FileScanner::class, true)) { throw new LogicException( sprintf( 'Class %s must be of type %s', $className, FileScanner::class ), 1622727271 ); } if (!empty($this->config->getFiletypeScanners()[$fileExtension]) || !empty($this->additionalFileTypeScanners[$fileExtension]) ) { throw new LogicException( sprintf('Cannot redeclare scanner for file-type %s', $fileExtension), 1622727272 ); } $this->additionalFileTypeScanners[$fileExtension] = $className; $this->addFileExtension($fileExtension); } /** * @return array> */ public function getAdditionalFileTypeScanners(): array { return $this->additionalFileTypeScanners; } /** * @param string $fileExtension e.g. `'html'` * @param class-string $className */ public function addFileTypeAnalyzer(string $fileExtension, string $className): void { if (!class_exists($className) || !is_a($className, FileAnalyzer::class, true)) { throw new LogicException( sprintf( 'Class %s must be of type %s', $className, FileAnalyzer::class ), 1622727281 ); } if (!empty($this->config->getFiletypeAnalyzers()[$fileExtension]) || !empty($this->additionalFileTypeAnalyzers[$fileExtension]) ) { throw new LogicException( sprintf('Cannot redeclare analyzer for file-type %s', $fileExtension), 1622727282 ); } $this->additionalFileTypeAnalyzers[$fileExtension] = $className; $this->addFileExtension($fileExtension); } /** * @return array> */ public function getAdditionalFileTypeAnalyzers(): array { return $this->additionalFileTypeAnalyzers; } /** * @return list e.g. `['html', 'perl']` */ public function getAdditionalFileExtensions(): array { return $this->additionalFileExtensions; } /** * @param string $fileExtension e.g. `'html'` */ private function addFileExtension(string $fileExtension): void { if (!in_array($fileExtension, $this->config->getFileExtensions(), true)) { $this->additionalFileExtensions[] = $fileExtension; } } }