File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ final class ExtEventLoop implements LoopInterface
40
40
public function __construct (EventBaseConfig $ config = null )
41
41
{
42
42
if (!class_exists ('EventBase ' , false )) {
43
- throw new BadMethodCallException ('Cannot ExtEventLoop, ext-event extension missing ' );
43
+ throw new BadMethodCallException ('Cannot create ExtEventLoop, ext-event extension missing ' );
44
44
}
45
45
46
46
$ this ->eventBase = new EventBase ($ config );
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ final class ExtLibevLoop implements LoopInterface
38
38
public function __construct ()
39
39
{
40
40
if (!class_exists ('libev\EventLoop ' , false )) {
41
- throw new BadMethodCallException ('CannotExtLibevLoop , ext-libev extension missing ' );
41
+ throw new BadMethodCallException ('Cannot create ExtLibevLoop , ext-libev extension missing ' );
42
42
}
43
43
44
44
$ this ->loop = new EventLoop ();
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ final class ExtLibeventLoop implements LoopInterface
54
54
public function __construct ()
55
55
{
56
56
if (!function_exists ('event_base_new ' )) {
57
- throw new BadMethodCallException ('CannotExtLibeventLoop , ext-libevent extension missing ' );
57
+ throw new BadMethodCallException ('Cannot create ExtLibeventLoop , ext-libevent extension missing ' );
58
58
}
59
59
60
60
$ this ->eventBase = event_base_new ();
You can’t perform that action at this time.
0 commit comments