mirror of
https://github.com/danog/psalm.git
synced 2024-12-12 09:19:40 +01:00
16 lines
311 B
PHP
16 lines
311 B
PHP
<?php
|
|
|
|
namespace Psalm\Plugin\EventHandler;
|
|
|
|
use Psalm\Plugin\EventHandler\Event\AddRemoveTaintsEvent;
|
|
|
|
interface AddTaintsInterface
|
|
{
|
|
/**
|
|
* Called to see what taints should be added
|
|
*
|
|
* @return list<string>
|
|
*/
|
|
public static function addTaints(AddRemoveTaintsEvent $event): array;
|
|
}
|