13 lines
267 B
PHP
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;
|
|
}
|