12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- declare(strict_types=1);
- namespace OCP\Files\Template;
- abstract class Field implements \JsonSerializable {
- public ?string $alias = null;
- public ?string $tag = null;
- public ?int $id = null;
-
- public function __construct(
- private string $index,
- private FieldType $type,
- ) {
- }
-
- abstract public function setValue(mixed $value): void;
-
- public function jsonSerialize(): array {
- return [
- 'index' => $this->index,
- 'type' => $this->type->value,
- 'alias' => $this->alias,
- 'tag' => $this->tag,
- 'id' => $this->id,
- ];
- }
- }
|