1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 09:37:59 +01:00
psalm/tests/fixtures/stubs/extending_plugin_entrypoint.php
orklah 6e3546d900
return types (#4311)
* return types

* remove willReturn for void methods
2021-01-29 11:39:53 +01: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);
}
}