diff options
author | Elizabeth Danzberger <lizzy7128@tutanota.de> | 2024-07-05 13:14:49 -0400 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2024-07-25 11:11:39 +0200 |
commit | f01dd3872443068aae27579c78636d813da52994 (patch) | |
tree | 08b92ab197df9826608ecb5f56abcf96b2cf0614 /lib/public/Files | |
parent | 05ed5aa230fde4e2c9ccf9c18c1e8766dbc9ad8d (diff) | |
download | nextcloud-server-f01dd3872443068aae27579c78636d813da52994.tar.gz nextcloud-server-f01dd3872443068aae27579c78636d813da52994.zip |
fix: Move field classes out of the server api
Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de>
Diffstat (limited to 'lib/public/Files')
-rw-r--r-- | lib/public/Files/Template/Field.php | 16 | ||||
-rw-r--r-- | lib/public/Files/Template/FieldType.php | 12 |
2 files changed, 0 insertions, 28 deletions
diff --git a/lib/public/Files/Template/Field.php b/lib/public/Files/Template/Field.php deleted file mode 100644 index ccab7f48b00..00000000000 --- a/lib/public/Files/Template/Field.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -/** - * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors - * SPDX-License-Identifier: AGPL-3.0-or-later - */ - -namespace OCP\Files\Template; - -class Field { - public FieldType $type; - - public function __construct(FieldType $type) { - $this->type = $type; - } -} diff --git a/lib/public/Files/Template/FieldType.php b/lib/public/Files/Template/FieldType.php deleted file mode 100644 index aaf66ce8d27..00000000000 --- a/lib/public/Files/Template/FieldType.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php - -/** - * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors - * SPDX-License-Identifier: AGPL-3.0-or-later - */ - -namespace OCP\Files\Template; - -enum FieldType { - case PlainText; -} |