update patch 1
This commit is contained in:
+6
-10
@@ -22,16 +22,12 @@ use Symfony\Component\Process\Process;
|
||||
*/
|
||||
class UnixPipes extends AbstractPipes
|
||||
{
|
||||
private ?bool $ttyMode;
|
||||
private bool $ptyMode;
|
||||
private bool $haveReadSupport;
|
||||
|
||||
public function __construct(?bool $ttyMode, bool $ptyMode, mixed $input, bool $haveReadSupport)
|
||||
{
|
||||
$this->ttyMode = $ttyMode;
|
||||
$this->ptyMode = $ptyMode;
|
||||
$this->haveReadSupport = $haveReadSupport;
|
||||
|
||||
public function __construct(
|
||||
private ?bool $ttyMode,
|
||||
private bool $ptyMode,
|
||||
mixed $input,
|
||||
private bool $haveReadSupport,
|
||||
) {
|
||||
parent::__construct($input);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user