HandlerListManager: added getter

This commit is contained in:
Dylan K. Taylor
2024-11-13 15:36:51 +00:00
parent 8f48fe4856
commit 17ae932d31

View File

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