1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/Plugin/PropertyPlugin.php
2019-03-02 08:43:19 -05:00

18 lines
475 B
PHP

<?php
namespace Psalm\Test\Plugin;
use Psalm\Plugin;
use SimpleXMLElement;
/** @psalm-suppress UnusedClass */
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);
}
}