1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 10:38:49 +01:00
psalm/tests/Plugin/MethodPlugin.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
434 B
PHP

<?php
namespace Psalm\Test\Plugin;
use Psalm\Plugin;
use SimpleXMLElement;
class MethodPlugin implements \Psalm\Plugin\PluginEntryPointInterface
{
/** @return void */
public function __invoke(Plugin\RegistrationInterface $registration, SimpleXMLElement $config = null)
{
require_once __DIR__ . '/Hook/FooMethodProvider.php';
$registration->registerHooksFromClass(Hook\FooMethodProvider::class);
}
}