8000 Merge pull request #166 from Donatello-za/issue-165 · reedy/reactphp-event-loop@707a875 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 707a875

Browse files
authored
Merge pull request reactphp#166 from Donatello-za/issue-165
Improved backward compatibility with PHP 5.3
2 parents e94985d + 603dc40 commit 707a875

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