File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -222,16 +222,6 @@ public static function supports($feature) {
222
222
return self ::get ()->supports ($ feature );
223
223
}
224
224
225
- /**
226
- * Get the underlying loop handle.
227
- *
228
- * @return null|object|resource The loop handle the event loop operates on. Null if there is none.
229
- */
230
- public static function getLoopHandle ()
231
- {
232
- return self ::get ()->getLoopHandle ();
233
- }
234
-
235
225
/**
236
226
* Disable construction as this is a static class.
237
227
*/
Original file line number Diff line number Diff line change @@ -157,7 +157,9 @@ public function supports($feature);
157
157
*
158
158
* Example: the uv_loop resource for libuv or the EvLoop object for libev or null for a native driver
159
159
*
160
+ * Note: This function is *not* exposed in the Loop class; users shall access it directly on the respective loop instance.
161
+ *
160
162
* @return null|object|resource The loop handle the event loop operates on. Null if there is none.
161
163
*/
162
- public static function getLoopHandle ();
164
+ public static function getHandle ();
163
165
}
You can’t perform that action at this time.
0 commit comments