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\FooPropertyProvider;
|
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 PropertyPlugin 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/FooPropertyProvider.php';
|
|
|
|
|
2021-12-04 21:55:53 +01:00
|
|
|
$registration->registerHooksFromClass(FooPropertyProvider::class);
|
2019-03-01 14:57:10 +01:00
|
|
|
}
|
|
|
|
}
|