mirror of
https://github.com/danog/process.git
synced 2024-12-13 01:27:26 +01:00
13 lines
213 B
PHP
13 lines
213 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp\Process\Internal\Windows;
|
||
|
|
||
|
final class PendingSocketClient
|
||
|
{
|
||
|
public $readWatcher;
|
||
|
public $timeoutWatcher;
|
||
|
public $recievedDataBuffer = '';
|
||
|
public $pid;
|
||
|
public $streamId;
|
||
|
}
|