Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- declare(strict_types=1);
-
- namespace App\Models;
-
- class JobType
- {
- 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;
- }
|