| 12345678910111213141516171819202122232425 |
- <?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
- ];
- }
- }
|