16 lines
258 B
PHP
16 lines
258 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Nih\CommandBuilder;
|
|
|
|
final class Output
|
|
{
|
|
public function __construct(
|
|
public readonly ?string $stdout,
|
|
public readonly ?string $stderr,
|
|
public readonly ExitStatus $code,
|
|
) {
|
|
}
|
|
}
|