mirror of
https://github.com/nextcloud/server.git
synced 2026-04-24 07:39:23 -04:00
Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de> fix: Composer dump Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de> fix: Add field array to template class Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de>
18 lines
No EOL
317 B
PHP
18 lines
No EOL
317 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCP\Files\Template;
|
|
|
|
use OCP\Files\Template\FieldType;
|
|
|
|
class Field {
|
|
public FieldType $type;
|
|
|
|
public function __construct(FieldType $type) {
|
|
$this->type = $type;
|
|
}
|
|
} |