We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3976f65 commit 688920cCopy full SHA for 688920c
composer.json
@@ -1,5 +1,5 @@
1
{
2
- "name": "react/event-loop",
+ "name": "crmall/event-loop",
3
"description": "Event loop abstraction layer that libraries can use for evented I/O.",
4
"keywords": ["event-loop", "asynchronous"],
5
"license": "MIT",
src/Factory.php
@@ -7,7 +7,7 @@ class Factory
7
public static function create()
8
9
// @codeCoverageIgnoreStart
10
- if (class_exists('EvLoop')) {
+ if (class_exists(\EvLoop::class)) {
11
return new EvLoop();
12
} else if (function_exists('event_base_new')) {
13
return new LibEventLoop();
0 commit comments