TenantAtlas/apps/platform/app/Services/TenantConfiguration/ExchangePowerShellCommandRunner.php
2026-07-07 15:54:34 +02:00

14 lines
306 B
PHP

<?php
declare(strict_types=1);
namespace App\Services\TenantConfiguration;
interface ExchangePowerShellCommandRunner
{
public function run(
ExchangePowerShellCommandContract $commandContract,
ExchangePowerShellInvocationContext $context,
): ExchangePowerShellInvocationResult;
}