Skip to content

Commit 688920c

Browse files
committed
EvLoop updates
1 parent 3976f65 commit 688920c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "react/event-loop",
2+
"name": "crmall/event-loop",
33
"description": "Event loop abstraction layer that libraries can use for evented I/O.",
44
"keywords": ["event-loop", "asynchronous"],
55
"license": "MIT",

src/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class Factory
77
public static function create()
88
{
99
// @codeCoverageIgnoreStart
10-
if (class_exists('EvLoop')) {
10+
if (class_exists(\EvLoop::class)) {
1111
return new EvLoop();
1212
} else if (function_exists('event_base_new')) {
1313
return new LibEventLoop();

0 commit comments

Comments
 (0)