mirror of
https://github.com/danog/psalm-insane-comparison.git
synced 2024-11-26 20:14:46 +01:00
19 lines
530 B
PHP
19 lines
530 B
PHP
|
<?php
|
||
|
namespace Orklah\PsalmStrictVisibility;
|
||
|
|
||
|
use Orklah\PsalmInsaneComparison\Hooks\InsaneComparison;
|
||
|
use SimpleXMLElement;
|
||
|
use Psalm\Plugin\PluginEntryPointInterface;
|
||
|
use Psalm\Plugin\RegistrationInterface;
|
||
|
|
||
|
class Plugin implements PluginEntryPointInterface
|
||
|
{
|
||
|
/** @return void */
|
||
|
public function __invoke(RegistrationInterface $psalm, ?SimpleXMLElement $config = null): void
|
||
|
{
|
||
|
if(class_exists(InsaneComparison::class)){
|
||
|
$psalm->registerHooksFromClass(InsaneComparison::class);
|
||
|
}
|
||
|
}
|
||
|
}
|