1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 09:37:59 +01:00
psalm/tests/Config/Plugin/AfterAnalysisPlugin.php

20 lines
548 B
PHP
Raw Permalink Normal View History

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