mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
17 lines
444 B
PHP
17 lines
444 B
PHP
|
<?php
|
||
|
namespace Psalm\Test\Plugin;
|
||
|
|
||
|
use Psalm\Plugin;
|
||
|
use SimpleXMLElement;
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
}
|