TenantAtlas/apps/platform/app/Services/TenantConfiguration/ExchangePowerShellProcessExecutor.php
Ahmed Darrazi 90a411429e
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m23s
feat: add Exchange PowerShell production runner gate
2026-07-07 20:32:36 +02:00

13 lines
267 B
PHP

<?php
declare(strict_types=1);
namespace App\Services\TenantConfiguration;
interface ExchangePowerShellProcessExecutor
{
public function available(): bool;
public function run(ExchangePowerShellProcessCommand $command): ExchangePowerShellProcessResult;
}