1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/fixtures/stubs/extending_plugin_entrypoint.php
orklah 10f2966dcb
return types (#4311)
* return types

* remove willReturn for void methods
2020-10-12 15:02:52 -04:00

15 lines
383 B
PHP

<?php
use Psalm\Plugin\PluginEntryPointInterface;
use Psalm\Plugin\RegistrationInterface;
require_once __DIR__ . '/extending_plugin.php';
class ExtendingPluginRegistration implements PluginEntryPointInterface
{
public function __invoke(RegistrationInterface $r, ?SimpleXMLElement $config = null): void
{
$r->registerHooksFromClass(ExtendingPlugin::class);
}
}