static-php-cli/src/SPC/toolchain/ToolchainInterface.php

19 lines
345 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2025-06-29 16:00:17 +08:00
namespace SPC\toolchain;
interface ToolchainInterface
{
/**
* Initialize the environment for the given target.
*/
2025-06-29 16:00:17 +08:00
public function initEnv(): void;
/**
* Perform actions after the environment has been initialized for the given target.
*/
2025-06-29 16:00:17 +08:00
public function afterInit(): void;
}