Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

25 строки
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.