8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e94985d commit 603dc40Copy full SHA for 603dc40
src/ExtEvLoop.php
@@ -40,12 +40,12 @@ class ExtEvLoop implements LoopInterface
40
/**
41
* @var EvIo[]
42
*/
43
- private $readStreams = [];
+ private $readStreams = array();
44
45
46
47
48
- private $writeStreams = [];
+ private $writeStreams = array();
49
50
51
* @var bool
@@ -60,7 +60,7 @@ class ExtEvLoop implements LoopInterface
60
61
* @var \EvSignal[]
62
63
- private $signalEvents = [];
+ private $signalEvents = array();
64
65
public function __construct()
66
{
0 commit comments