Skip to content

Commit

Permalink
Set autoload to false
Browse files Browse the repository at this point in the history
Czar Pino committed May 30, 2014
1 parent 61a3b7b commit 9102d56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Factory.php
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@ public static function create()
// @codeCoverageIgnoreStart
if (function_exists('event_base_new')) {
return new LibEventLoop();
} else if (class_exists('libev\EventLoop')) {
} else if (class_exists('libev\EventLoop', false)) {
return new LibEvLoop;
} else if (class_exists('EventBase')) {
} else if (class_exists('EventBase', false)) {
return new ExtEventLoop;
}

0 comments on commit 9102d56

Please sign in to comment.