mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 10:17:33 +01:00
10f2966dcb
* return types * remove willReturn for void methods
10 lines
201 B
PHP
10 lines
201 B
PHP
<?php
|
|
namespace Psalm\Plugin;
|
|
|
|
use SimpleXMLElement;
|
|
|
|
interface PluginEntryPointInterface
|
|
{
|
|
public function __invoke(RegistrationInterface $registration, ?SimpleXMLElement $config = null): void;
|
|
}
|