mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
6e3546d900
* return types * remove willReturn for void methods
18 lines
546 B
PHP
18 lines
546 B
PHP
<?php
|
|
namespace Psalm\Test\Config\Plugin;
|
|
|
|
use Psalm\Plugin;
|
|
use SimpleXMLElement;
|
|
|
|
/** @psalm-suppress UnusedClass */
|
|
class SqlStringProviderPlugin implements \Psalm\Plugin\PluginEntryPointInterface
|
|
{
|
|
public function __invoke(Plugin\RegistrationInterface $registration, ?SimpleXMLElement $config = null): void
|
|
{
|
|
require_once __DIR__ . '/Hook/SqlStringProvider.php';
|
|
require_once __DIR__ . '/Hook/StringProvider/TSqlSelectString.php';
|
|
|
|
$registration->registerHooksFromClass(Hook\SqlStringProvider::class);
|
|
}
|
|
}
|