1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 00:49:48 +01:00

Fix accidental static on LoopDriver::getHandle()

This commit is contained in:
Bob Weinand 2016-05-22 15:47:34 +02:00
parent eb242de2fb
commit 4dce408678

View File

@ -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();
}