Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Replace "EvLoop::defaultLoop()" with "new EvLoop()".
  • Loading branch information
ivkalita committed Apr 8, 2017
commit 0b375f70ec4a4a8c780b4e05867bafa44707de49
2 changes: 1 addition & 1 deletion src/PeclEvLoop.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class PeclEvLoop implements LoopInterface

public function __construct()
{
$this->loop = EvLoop::defaultLoop();
$this->loop = new EvLoop();
$this->nextTickQueue = new NextTickQueue($this);
$this->futureTickQueue = new FutureTickQueue($this);
$this->timerEvents = new SplObjectStorage();
Expand Down