mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
317f790bde
* 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
17 lines
440 B
PHP
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);
|
|
}
|
|
}
|