mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
a338e76ef6
* Split Plugin into PluginApi\Hook\* interfaces * dropped Psalm\Plugin * updated docs * s/PluginApi/Plugin/g
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);
|
|
}
|
|
}
|