mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
1348e61afb
* 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
18 lines
487 B
PHP
18 lines
487 B
PHP
<?php
|
|
namespace Psalm\Test\Config\Plugin;
|
|
|
|
use Psalm\Plugin;
|
|
use SimpleXMLElement;
|
|
|
|
/** @psalm-suppress UnusedClass */
|
|
class FunctionPlugin implements \Psalm\Plugin\PluginEntryPointInterface
|
|
{
|
|
/** @return void */
|
|
public function __invoke(Plugin\RegistrationInterface $registration, ?SimpleXMLElement $config = null)
|
|
{
|
|
require_once __DIR__ . '/Hook/MagicFunctionProvider.php';
|
|
|
|
$registration->registerHooksFromClass(Hook\MagicFunctionProvider::class);
|
|
}
|
|
}
|