Skip to content

Commit f1c4746

Browse files
cbodenclue
authored andcommitted
Remove warning on invalid version mismatch
1 parent bda850f commit f1c4746

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/LibEventLoop.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ class LibEventLoop implements LoopInterface
2929

3030
public function __construct()
3131
{
32-
if (version_compare(PHP_VERSION, '7.0.0') >= 0) {
33-
trigger_error('The libevent extension has not yet been updated for PHP 7, it is recommended you use a different loop', E_USER_WARNING);
34-
}
35-
3632
$this->eventBase = event_base_new();
3733
$this->futureTickQueue = new FutureTickQueue();
3834
$this->timerEvents = new SplObjectStorage();

0 commit comments

Comments
 (0)