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