mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
18 lines
477 B
PHP
18 lines
477 B
PHP
<?php
|
|
namespace Psalm\Test\Config\Plugin;
|
|
|
|
use Psalm\Plugin;
|
|
use Psalm\Plugin\PluginEntryPointInterface;
|
|
use SimpleXMLElement;
|
|
|
|
/** @psalm-suppress UnusedClass */
|
|
class FilePlugin implements PluginEntryPointInterface
|
|
{
|
|
public function __invoke(Plugin\RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
|
{
|
|
require_once __DIR__ . '/Hook/FileProvider.php';
|
|
|
|
$registration->registerHooksFromClass(Hook\FileProvider::class);
|
|
}
|
|
}
|