From 4dce40867835591fdfeaf9811d7e1abd245f9901 Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Sun, 22 May 2016 15:47:34 +0200 Subject: [PATCH] Fix accidental static on LoopDriver::getHandle() --- src/LoopDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LoopDriver.php b/src/LoopDriver.php index 9c1fd63..9b991bb 100644 --- a/src/LoopDriver.php +++ b/src/LoopDriver.php @@ -153,5 +153,5 @@ interface LoopDriver * * @return null|object|resource The loop handle the event loop operates on. Null if there is none. */ - public static function getHandle(); + public function getHandle(); }