mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 02:07:37 +01:00
14 lines
244 B
PHP
14 lines
244 B
PHP
|
<?php
|
||
|
namespace Psalm\PluginApi;
|
||
|
|
||
|
interface RegistrationInterface
|
||
|
{
|
||
|
/** @return void */
|
||
|
public function addStubFile(string $file_name);
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function registerHooksFromClass(string $handler);
|
||
|
}
|