diff options
author | Jana Peper <jana.peper@nextcloud.com> | 2024-12-12 10:53:39 +0100 |
---|---|---|
committer | janepie <49834966+janepie@users.noreply.github.com> | 2024-12-18 18:32:34 +0100 |
commit | e5f7d0017b4c53c7a48d9b23a2ba5beb0efea7dc (patch) | |
tree | 638e84b49a00391a17db976a8608ac77b6a39b55 | |
parent | a7f26cf966625670c4ed5eaab8c89cac7c7ab943 (diff) | |
download | nextcloud-server-e5f7d0017b4c53c7a48d9b23a2ba5beb0efea7dc.tar.gz nextcloud-server-e5f7d0017b4c53c7a48d9b23a2ba5beb0efea7dc.zip |
docs: document adding of argument
Signed-off-by: Jana Peper <jana.peper@nextcloud.com>
-rw-r--r-- | lib/public/TaskProcessing/IManager.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/TaskProcessing/IManager.php b/lib/public/TaskProcessing/IManager.php index a4ce9e8bbbe..68825e82533 100644 --- a/lib/public/TaskProcessing/IManager.php +++ b/lib/public/TaskProcessing/IManager.php @@ -49,6 +49,7 @@ interface IManager { * @param bool $showDisabled if false, disabled task types will be filtered * @return array<string, array{name: string, description: string, inputShape: ShapeDescriptor[], inputShapeEnumValues: ShapeEnumValue[][], inputShapeDefaults: array<array-key, numeric|string>, optionalInputShape: ShapeDescriptor[], optionalInputShapeEnumValues: ShapeEnumValue[][], optionalInputShapeDefaults: array<array-key, numeric|string>, outputShape: ShapeDescriptor[], outputShapeEnumValues: ShapeEnumValue[][], optionalOutputShape: ShapeDescriptor[], optionalOutputShapeEnumValues: ShapeEnumValue[][]}> * @since 30.0.0 + * @since 31.0.0 Added the `showDisabled` argument. */ public function getAvailableTaskTypes(bool $showDisabled = false): array; |