Skip to content

Commit 9102d56

Browse files
author
Czar Pino
committed
Set autoload to false
1 parent 61a3b7b commit 9102d56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Factory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ public static function create()
99
// @codeCoverageIgnoreStart
1010
if (function_exists('event_base_new')) {
1111
return new LibEventLoop();
12-
} else if (class_exists('libev\EventLoop')) {
12+
} else if (class_exists('libev\EventLoop', false)) {
1313
return new LibEvLoop;
14-
} else if (class_exists('EventBase')) {
14+
} else if (class_exists('EventBase', false)) {
1515
return new ExtEventLoop;
1616
}
1717

0 commit comments

Comments
 (0)