feat: first impl
This commit is contained in:
15
src/Output.php
Normal file
15
src/Output.php
Normal 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,
|
||||
) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user