mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
10f2966dcb
* return types * remove willReturn for void methods
17 lines
469 B
PHP
17 lines
469 B
PHP
<?php
|
|
namespace Psalm\Test\Config\Plugin;
|
|
|
|
use Psalm\Plugin;
|
|
use SimpleXMLElement;
|
|
|
|
/** @psalm-suppress UnusedClass */
|
|
class FunctionPlugin implements \Psalm\Plugin\PluginEntryPointInterface
|
|
{
|
|
public function __invoke(Plugin\RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
|
{
|
|
require_once __DIR__ . '/Hook/MagicFunctionProvider.php';
|
|
|
|
$registration->registerHooksFromClass(Hook\MagicFunctionProvider::class);
|
|
}
|
|
}
|