1 | <?php |
||
19 | class NonBlockStreamHandler extends StreamHandler |
||
20 | { |
||
21 | /** |
||
22 | * @var LoopInterface |
||
23 | */ |
||
24 | protected $eventLoop; |
||
25 | |||
26 | /** |
||
27 | * @var WritableResourceStream |
||
28 | */ |
||
29 | protected $nonBlockStream; |
||
30 | |||
31 | public function __construct(LoopInterface $eventLoop, $stream, $level = Monologer::DEBUG, $bubble = true, $filePermission = null, $useLocking = false) |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | protected function streamWrite($stream, array $record) |
||
52 | } |