1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/Config/Plugin/AfterAnalysisPlugin.php
orklah 8c7423505a
add native param types (#4137)
* add native param types

* redundant phpdoc

* add more param types and adds "?" to nullable types

* remove redundant phpdoc

* add more param types and remove redundant phpdoc

* add more param types and remove redundant phpdoc
2020-09-06 19:36:47 -04:00

18 lines
476 B
PHP

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