Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?php
-
- declare(strict_types=1);
-
- namespace App\Models;
-
- class CustomerType
- {
- public ?int $id = null;
- public string $name = '';
-
- /** @var list<array{name: string, type: string}> */
- public array $attributes = [];
-
- public ?string $createdAt = null;
- public ?string $updatedAt = null;
- }
|