mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 09:37:59 +01:00
20 lines
616 B
PHP
20 lines
616 B
PHP
<?php
|
|
|
|
namespace Psalm\Tests\Config\Plugin;
|
|
|
|
use Psalm\Plugin\PluginEntryPointInterface;
|
|
use Psalm\Plugin\RegistrationInterface;
|
|
use Psalm\Tests\Config\Plugin\Hook\CustomArrayMapFunctionStorageProvider;
|
|
use SimpleXMLElement;
|
|
|
|
/** @psalm-suppress UnusedClass */
|
|
class StoragePlugin implements PluginEntryPointInterface
|
|
{
|
|
public function __invoke(RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
|
{
|
|
require_once __DIR__ . '/Hook/CustomArrayMapFunctionStorageProvider.php';
|
|
|
|
$registration->registerHooksFromClass(CustomArrayMapFunctionStorageProvider::class);
|
|
}
|
|
}
|