25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

31 satır
578B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\ViewModels;
  4. class CampaignTypeViewModel
  5. {
  6. public string $title = 'Campaign Types';
  7. public bool $saved = false;
  8. public bool $deleted = false;
  9. /**
  10. * @var array{name: string, attributes: list<array{name: string, type: string}>}
  11. */
  12. public array $form = [
  13. 'name' => '',
  14. 'attributes' => [],
  15. ];
  16. /**
  17. * @var array<string, list<string>>
  18. */
  19. public array $errors = [];
  20. /**
  21. * @var array<string, mixed>|null
  22. */
  23. public ?array $campaignType = null;
  24. }

Powered by TurnKey Linux.