1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/Plugin/PropertyPlugin.php

18 lines
475 B
PHP
Raw Normal View History

<?php
namespace Psalm\Test\Plugin;
use Psalm\Plugin;
use SimpleXMLElement;
2019-03-01 21:55:20 +01:00
/** @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);
}
}