Files
sam-api/app/Services/TenantBootstrap/Contracts/TenantBootstrapStep.php

17 lines
313 B
PHP
Raw Normal View History

<?php
namespace App\Services\TenantBootstrap\Contracts;
interface TenantBootstrapStep
{
/**
* 스텝 식별자(고유)
*/
public function key(): string;
/**
* 여러 실행해도 안전하게 동작해야 (idempotent).
*/
public function run(int $tenantId): void;
}