1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/fixtures/stubs/extending_plugin_entrypoint.phpstub
2021-02-13 18:42:34 -05:00

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);
}
}