mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 13:24:51 +08:00
19 lines
378 B
PHP
19 lines
378 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace SPC\util\toolchain;
|
||
|
|
|
||
|
|
interface ToolchainInterface
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Initialize the environment for the given target.
|
||
|
|
*/
|
||
|
|
public function initEnv(string $target): void;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Perform actions after the environment has been initialized for the given target.
|
||
|
|
*/
|
||
|
|
public function afterInit(string $target): void;
|
||
|
|
}
|