1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-03 10:07:52 +01:00
psalm/tests/Config/Plugin/MethodPlugin.php
2023-10-19 14:16:41 +02:00

22 lines
579 B
PHP

<?php
declare(strict_types=1);
namespace Psalm\Test\Config\Plugin;
use Psalm\Plugin\PluginEntryPointInterface;
use Psalm\Plugin\RegistrationInterface;
use Psalm\Test\Config\Plugin\Hook\FooMethodProvider;
use SimpleXMLElement;
/** @psalm-suppress UnusedClass */
class MethodPlugin implements PluginEntryPointInterface
{
public function __invoke(RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
{
require_once __DIR__ . '/Hook/FooMethodProvider.php';
$registration->registerHooksFromClass(FooMethodProvider::class);
}
}