mirror of
https://github.com/danog/psalm.git
synced 2024-12-12 09:19:40 +01:00
15 lines
343 B
PHP
15 lines
343 B
PHP
<?php
|
|
|
|
namespace Psalm\Plugin\EventHandler;
|
|
|
|
use Psalm\Plugin\EventHandler\Event\StringInterpreterEvent;
|
|
use Psalm\Type\Atomic\TLiteralString;
|
|
|
|
interface StringInterpreterInterface
|
|
{
|
|
/**
|
|
* Called after a statement has been checked
|
|
*/
|
|
public static function getTypeFromValue(StringInterpreterEvent $event): ?TLiteralString;
|
|
}
|