mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 10:38:49 +01:00
19 lines
563 B
PHP
19 lines
563 B
PHP
|
<?php
|
||
|
namespace Psalm\Test\Config\Plugin;
|
||
|
|
||
|
use Psalm\Plugin;
|
||
|
use SimpleXMLElement;
|
||
|
|
||
|
/** @psalm-suppress UnusedClass */
|
||
|
class SqlStringProviderPlugin implements \Psalm\Plugin\PluginEntryPointInterface
|
||
|
{
|
||
|
/** @return void */
|
||
|
public function __invoke(Plugin\RegistrationInterface $registration, SimpleXMLElement $config = null)
|
||
|
{
|
||
|
require_once __DIR__ . '/Hook/SqlStringProvider.php';
|
||
|
require_once __DIR__ . '/Hook/StringProvider/TSqlSelectString.php';
|
||
|
|
||
|
$registration->registerHooksFromClass(Hook\SqlStringProvider::class);
|
||
|
}
|
||
|
}
|