Skip to content

Commit fb03eb9

Browse files
committed
Fixed wrong loop name
1 parent c2a52f7 commit fb03eb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static function create()
2828
// only use ext-uv on PHP 7
2929
return new LibUvLoop();
3030
} elseif (class_exists('libev\EventLoop', false)) {
31-
return new LibEvLoop;
31+
return new ExtLibevLoop;
3232
} elseif (class_exists('EventBase', false)) {
3333
return new ExtEventLoop();
3434
} elseif (function_exists('event_base_new') && PHP_MAJOR_VERSION === 5) {

0 commit comments

Comments
 (0)