From ea66677a50aa5ee5341746ed3d3db40500f8da2d Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Sat, 6 Aug 2016 08:58:37 -0500 Subject: [PATCH] Update for Driver changes in spec --- lib/Loop.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/Loop.php b/lib/Loop.php index d5f25bb..c0cb0bc 100644 --- a/lib/Loop.php +++ b/lib/Loop.php @@ -5,11 +5,8 @@ namespace Amp\Loop; use Amp\Loop\Internal\Watcher; use Interop\Async\Loop\Driver; use Interop\Async\Loop\InvalidWatcherException; -use Interop\Async\Loop\Registry; - -abstract class Loop implements Driver { - use Registry; +abstract class Loop extends Driver { const MILLISEC_PER_SEC = 1e3; const MICROSEC_PER_SEC = 1e6;