| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function __construct(string $cancel_key, LoopMiddlewareInterface $chain) |
||
| 26 | { |
||
| 27 | $this->chain = $chain; |
||
| 28 | exec('stty -icanon -echo'); |
||
| 29 | $this->keyboard_input = fopen('php://stdin', 'r'); |
||
| 30 | stream_set_blocking($this->keyboard_input, false); |
||
| 31 | $this->cancel_key = $cancel_key; |
||
| 32 | } |
||
| 43 |