mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
da42be175f
Fixes #1880
11 lines
209 B
PHP
11 lines
209 B
PHP
<?php
|
|
namespace Psalm\Plugin;
|
|
|
|
use SimpleXMLElement;
|
|
|
|
interface PluginEntryPointInterface
|
|
{
|
|
/** @return void */
|
|
public function __invoke(RegistrationInterface $api, SimpleXMLElement $config = null);
|
|
}
|