1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 09:37:59 +01:00
psalm/tests/Config/Plugin/PropertyPlugin.php

20 lines
561 B
PHP
Raw Normal View History

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