mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
8c7423505a
* add native param types * redundant phpdoc * add more param types and adds "?" to nullable types * remove redundant phpdoc * add more param types and remove redundant phpdoc * add more param types and remove redundant phpdoc
16 lines
401 B
PHP
16 lines
401 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);
|
|
}
|
|
}
|