mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 09:37:59 +01:00
16 lines
400 B
PHP
16 lines
400 B
PHP
<?php
|
|
|
|
use Psalm\Plugin\PluginEntryPointInterface;
|
|
use Psalm\Plugin\RegistrationInterface;
|
|
|
|
require_once __DIR__ . '/extending_plugin.php';
|
|
|
|
class ExtendingPluginRegistration implements PluginEntryPointInterface
|
|
{
|
|
/** @return void */
|
|
public function __invoke(RegistrationInterface $r, SimpleXMLElement $config = null)
|
|
{
|
|
$r->registerHooksFromClass(ExtendingPlugin::class);
|
|
}
|
|
}
|