Files
nih-php-command-builder/src/ChildStdin.php
Jonas Kattendick 5797059008 fix!: handle php errors with custom error handling
This commit changes the api of the stream classes, since indication of
success or failure is no longer necessary.
2026-02-13 23:26:32 +01:00

19 lines
272 B
PHP

<?php
declare(strict_types=1);
namespace Nih\CommandBuilder;
use Override;
final class ChildStdin implements StdioInterface
{
use StreamWriteTrait;
#[Override]
public function getDescriptionSpec(int $fd): mixed
{
return $this->stream;
}
}