picea/src/Event/Compiler/CompileTokenExtensionEvent.php

10 lines
212 B
PHP

<?php
namespace Picea\Event\Compiler;
use Picea\Compiler\Context;
interface CompileTokenExtensionEvent
{
public function execute(Context $context, ?string $arguments, string $token, array $options = []);
}