feat: first impl

This commit is contained in:
2025-08-16 21:48:01 +02:00
parent e60ab9d7bc
commit 209c910f33
14 changed files with 444 additions and 0 deletions

15
src/Output.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace Nih\CommandBuilder;
final class Output
{
public function __construct(
public readonly ?string $stdout,
public readonly ?string $stderr,
public readonly int $code,
) {
}
}