mirror of
https://github.com/danog/psalm.git
synced 2024-11-30 04:39:00 +01:00
6e3546d900
* return types * remove willReturn for void methods
15 lines
408 B
PHP
15 lines
408 B
PHP
<?php
|
|
namespace Psalm\Example\Plugin\ComposerBased;
|
|
|
|
use Psalm\Plugin;
|
|
use SimpleXMLElement;
|
|
|
|
class PluginEntryPoint implements Plugin\PluginEntryPointInterface
|
|
{
|
|
public function __invoke(Plugin\RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
|
{
|
|
require_once __DIR__ . '/EchoChecker.php';
|
|
$registration->registerHooksFromClass(EchoChecker::class);
|
|
}
|
|
}
|