HandlerListManager: added getter

This commit is contained in:
Dylan K. Taylor 2024-11-13 15:36:51 +00:00
parent 8f48fe4856
commit 17ae932d31
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -173,4 +173,11 @@ class HandlerListManager{
public function getAll() : array{
return $this->allSyncLists;
}
/**
* @return AsyncHandlerList[]
*/
public function getAllAsync() : array{
return $this->allAsyncLists;
}
}