mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 10:57:08 +01:00
11 lines
212 B
PHP
11 lines
212 B
PHP
|
<?php
|
||
|
namespace Psalm\PluginApi;
|
||
|
|
||
|
use SimpleXMLElement;
|
||
|
|
||
|
interface PluginEntryPointInterface
|
||
|
{
|
||
|
/** @return void */
|
||
|
public function __invoke(RegistrationInterface $api, SimpleXMLElement $config = null);
|
||
|
}
|