1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/Plugin/PropertyPlugin.php
Matthew Brown 317f790bde
New plugin hooks (#1405)
* Add a bunch of new hooks

* Add more integrations

* Add some broken tests

* Add more things

* Fix remaining interfaces

* Suppress proper issue

* UndefinedMethod should not stop analysis

* Add handlers for two custom method return types
2019-03-01 08:57:10 -05:00

17 lines
440 B
PHP

<?php
namespace Psalm\Test\Plugin;
use Psalm\Plugin;
use SimpleXMLElement;
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);
}
}