mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
20 lines
548 B
PHP
20 lines
548 B
PHP
<?php
|
|
|
|
namespace Psalm\Test\Config\Plugin;
|
|
|
|
use Psalm\Plugin\PluginEntryPointInterface;
|
|
use Psalm\Plugin\RegistrationInterface;
|
|
use Psalm\Test\Config\Plugin\Hook\AfterAnalysis;
|
|
use SimpleXMLElement;
|
|
|
|
/** @psalm-suppress UnusedClass */
|
|
class AfterAnalysisPlugin implements PluginEntryPointInterface
|
|
{
|
|
public function __invoke(RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
|
{
|
|
require_once __DIR__ . '/Hook/AfterAnalysis.php';
|
|
|
|
$registration->registerHooksFromClass(AfterAnalysis::class);
|
|
}
|
|
}
|