mirror of
https://github.com/danog/psalm.git
synced 2024-11-30 04:39:00 +01:00
18 lines
469 B
PHP
18 lines
469 B
PHP
<?php
|
|
namespace Psalm\Test\Plugin;
|
|
|
|
use Psalm\Plugin;
|
|
use SimpleXMLElement;
|
|
|
|
/** @psalm-suppress UnusedClass */
|
|
class MethodPlugin implements \Psalm\Plugin\PluginEntryPointInterface
|
|
{
|
|
/** @return void */
|
|
public function __invoke(Plugin\RegistrationInterface $registration, SimpleXMLElement $config = null)
|
|
{
|
|
require_once __DIR__ . '/Hook/FooMethodProvider.php';
|
|
|
|
$registration->registerHooksFromClass(Hook\FooMethodProvider::class);
|
|
}
|
|
}
|