TenantAtlas/apps/platform/app/Services/TenantConfiguration/ExchangePowerShellProcessCommand.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

19 lines
375 B
PHP

<?php
declare(strict_types=1);
namespace App\Services\TenantConfiguration;
final readonly class ExchangePowerShellProcessCommand
{
/**
* @param list<string> $arguments
*/
public function __construct(
public array $arguments,
public int $timeoutSeconds,
public int $stdoutMaxBytes,
public int $stderrMaxBytes,
) {}
}