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 Employee
- {
- public ?int $id = null;
- public string $firstName = '';
- public string $lastName = '';
- public string $email = '';
- public string $department = '';
- public string $jobTitle = '';
- public string $startDate = '';
- }
|