8 lines
150 B
PHP
8 lines
150 B
PHP
<?php
|
|
|
|
namespace Picea\Event\Builder;
|
|
|
|
interface ClassTemplateOutputDone {
|
|
public function execute(string $name, array $variablesList) : mixed;
|
|
}
|