mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 09:37:59 +01:00
6e3546d900
* return types * remove willReturn for void methods
15 lines
383 B
PHP
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);
|
|
}
|
|
}
|