mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 09:38:32 +01:00
20 lines
534 B
PHP
20 lines
534 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Psl\Internal\Psalm;
|
||
|
|
||
|
use Psalm\Plugin\PluginEntryPointInterface;
|
||
|
use Psalm\Plugin\RegistrationInterface;
|
||
|
use SimpleXMLElement;
|
||
|
|
||
|
final class Plugin implements PluginEntryPointInterface
|
||
|
{
|
||
|
public function __invoke(RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
||
|
{
|
||
|
require_once __DIR__ . '/EventHandler/ShapeFunctionReturnTypeProvider.php';
|
||
|
|
||
|
$registration->registerHooksFromClass(EventHandler\ShapeFunctionReturnTypeProvider::class);
|
||
|
}
|
||
|
}
|