Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <?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 = '';
- }
|