We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e76bdf commit b586e29Copy full SHA for b586e29
async.c
@@ -793,7 +793,7 @@ static void async_timeout_destroy_object(zend_object *object)
793
}
794
795
796
-static void async_timeout_event_dispose(zend_async_event_t *event)
+static bool async_timeout_event_dispose(zend_async_event_t *event)
797
{
798
async_timeout_ext_t *timeout = ASYNC_TIMEOUT_FROM_EVENT(event);
799
@@ -810,6 +810,8 @@ static void async_timeout_event_dispose(zend_async_event_t *event)
810
if (timeout->prev_dispose) {
811
timeout->prev_dispose(event);
812
813
+
814
+ return true;
815
816
817
static void timeout_before_notify_handler(zend_async_event_t *event, void *result, zend_object *exception)
0 commit comments