| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Services\Template;
- class TextNode extends ContentNode
- {
- public string $content;
- public function __construct(string $content, array $position = [])
- {
- $this->type = 'text';
- $this->content = $content;
- $this->position = $position;
- }
- public function toArray(): array
- {
- return [
- 'type' => $this->type,
- 'content' => $this->content,
- 'position' => $this->position,
- ];
- }
- }
|