Skip to content

Commit

Permalink
EvLoop updates
Browse files Browse the repository at this point in the history
  • Loading branch information
arcostasi committed Feb 10, 2016
1 parent 3976f65 commit 688920c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "react/event-loop",
"name": "crmall/event-loop",
"description": "Event loop abstraction layer that libraries can use for evented I/O.",
"keywords": ["event-loop", "asynchronous"],
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Factory
public static function create()
{
// @codeCoverageIgnoreStart
if (class_exists('EvLoop')) {
if (class_exists(\EvLoop::class)) {
return new EvLoop();
} else if (function_exists('event_base_new')) {
return new LibEventLoop();
Expand Down

0 comments on commit 688920c

Please sign in to comment.