Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

25 řádky
550B

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

Powered by TurnKey Linux.