Skip to content

Commit

Permalink
Merge pull request #166 from Donatello-za/issue-165
Browse files Browse the repository at this point in the history
Improved backward compatibility with PHP 5.3
  • Loading branch information
jsor committed May 10, 2018
2 parents e94985d + 603dc40 commit 707a875
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ExtEvLoop.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ class ExtEvLoop implements LoopInterface
/**
* @var EvIo[]
*/
private $readStreams = [];
private $readStreams = array();

/**
* @var EvIo[]
*/
private $writeStreams = [];
private $writeStreams = array();

/**
* @var bool
Expand All @@ -60,7 +60,7 @@ class ExtEvLoop implements LoopInterface
/**
* @var \EvSignal[]
*/
private $signalEvents = [];
private $signalEvents = array();

public function __construct()
{
Expand Down

0 comments on commit 707a875

Please sign in to comment.