mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
17 lines
461 B
PHP
17 lines
461 B
PHP
<?php
|
|
|
|
namespace Psalm\Example\Plugin\ComposerBased;
|
|
|
|
use Psalm\Plugin\PluginEntryPointInterface;
|
|
use Psalm\Plugin\RegistrationInterface;
|
|
use SimpleXMLElement;
|
|
|
|
class PluginEntryPoint implements PluginEntryPointInterface
|
|
{
|
|
public function __invoke(RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
|
{
|
|
require_once __DIR__ . '/EchoChecker.php';
|
|
$registration->registerHooksFromClass(EchoChecker::class);
|
|
}
|
|
}
|