Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?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 = '';
- }
|