diff --git a/src/event/HandlerListManager.php b/src/event/HandlerListManager.php index aedf065a3..725b3b8e0 100644 --- a/src/event/HandlerListManager.php +++ b/src/event/HandlerListManager.php @@ -173,4 +173,11 @@ class HandlerListManager{ public function getAll() : array{ return $this->allSyncLists; } + + /** + * @return AsyncHandlerList[] + */ + public function getAllAsync() : array{ + return $this->allAsyncLists; + } }