2019-03-01 14:57:10 +01:00
|
|
|
<?php
|
2021-12-15 04:58:32 +01:00
|
|
|
|
2019-05-10 00:58:30 +02:00
|
|
|
namespace Psalm\Test\Config\Plugin;
|
2019-03-01 14:57:10 +01:00
|
|
|
|
2021-12-03 20:11:20 +01:00
|
|
|
use Psalm\Plugin\PluginEntryPointInterface;
|
2021-12-04 21:55:53 +01:00
|
|
|
use Psalm\Plugin\RegistrationInterface;
|
|
|
|
use Psalm\Test\Config\Plugin\Hook\MagicFunctionProvider;
|
2019-03-01 14:57:10 +01:00
|
|
|
use SimpleXMLElement;
|
|
|
|
|
2019-03-01 21:55:20 +01:00
|
|
|
/** @psalm-suppress UnusedClass */
|
2021-12-03 20:11:20 +01:00
|
|
|
class FunctionPlugin implements PluginEntryPointInterface
|
2019-03-01 14:57:10 +01:00
|
|
|
{
|
2021-12-04 21:55:53 +01:00
|
|
|
public function __invoke(RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
2019-03-01 14:57:10 +01:00
|
|
|
{
|
|
|
|
require_once __DIR__ . '/Hook/MagicFunctionProvider.php';
|
|
|
|
|
2021-12-04 21:55:53 +01:00
|
|
|
$registration->registerHooksFromClass(MagicFunctionProvider::class);
|
2019-03-01 14:57:10 +01:00
|
|
|
}
|
|
|
|
}
|