2019-03-23 17:47:46 +01:00
|
|
|
<?php
|
2019-05-10 00:58:30 +02:00
|
|
|
namespace Psalm\Test\Config\Plugin;
|
2019-03-23 17:47:46 +01:00
|
|
|
|
|
|
|
use Psalm\Plugin;
|
|
|
|
use SimpleXMLElement;
|
|
|
|
|
|
|
|
/** @psalm-suppress UnusedClass */
|
|
|
|
class AfterAnalysisPlugin implements \Psalm\Plugin\PluginEntryPointInterface
|
|
|
|
{
|
2020-10-12 21:02:52 +02:00
|
|
|
public function __invoke(Plugin\RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
2019-03-23 17:47:46 +01:00
|
|
|
{
|
|
|
|
require_once __DIR__ . '/Hook/AfterAnalysis.php';
|
|
|
|
|
|
|
|
$registration->registerHooksFromClass(Hook\AfterAnalysis::class);
|
|
|
|
}
|
|
|
|
}
|