1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/src/Psalm/Plugin/PluginEntryPointInterface.php
Matthew Brown da42be175f Apply PHPCS fixes
Fixes #1880
2019-07-05 16:27:53 -04:00

11 lines
209 B
PHP

<?php
namespace Psalm\Plugin;
use SimpleXMLElement;
interface PluginEntryPointInterface
{
/** @return void */
public function __invoke(RegistrationInterface $api, SimpleXMLElement $config = null);
}