8000 Issue #165: Improved backward compatibility with PHP 5.3 · reedy/reactphp-event-loop@603dc40 · GitHub
[go: up one dir, main page]

Skip to content

Commit 603dc40

Browse files
committed
Issue reactphp#165: Improved backward compatibility with PHP 5.3
1 parent e94985d commit 603dc40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ExtEvLoop.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ class ExtEvLoop implements LoopInterface
4040
/**
4141
* @var EvIo[]
4242
*/
43-
private $readStreams = [];
43+
private $readStreams = array();
4444

4545
/**
4646
* @var EvIo[]
4747
*/
48-
private $writeStreams = [];
48+
private $writeStreams = array();
4949

5050
/**
5151
* @var bool
@@ -60,7 +60,7 @@ class ExtEvLoop implements LoopInterface
6060
/**
6161
* @var \EvSignal[]
6262
*/
63-
private $signalEvents = [];
63+
private $signalEvents = array();
6464

6565
public function __construct()
6666
{

0 commit comments

Comments
 (0)
0