2
0

ContentNode.php 207 B

12345678910111213
  1. <?php
  2. namespace App\Services\Template;
  3. abstract class ContentNode
  4. {
  5. public string $type;
  6. public string $content;
  7. public array $position = [];
  8. abstract public function toArray(): array;
  9. }