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