mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
15 lines
387 B
PHP
15 lines
387 B
PHP
<?php
|
|
|
|
use Psalm\Plugin\PluginEntryPointInterface;
|
|
use Psalm\Plugin\RegistrationInterface;
|
|
|
|
require_once __DIR__ . '/extending_plugin.phpstub';
|
|
|
|
class ExtendingPluginRegistration implements PluginEntryPointInterface
|
|
{
|
|
public function __invoke(RegistrationInterface $r, ?SimpleXMLElement $config = null): void
|
|
{
|
|
$r->registerHooksFromClass(ExtendingPlugin::class);
|
|
}
|
|
}
|