src/Form/Login/Model/EmployeeLoginModel.php line 6

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Form\Login\Model;
  4. class EmployeeLoginModel
  5. {
  6.     private ?string $username null;
  7.     private ?string $password null;
  8.     public function getUsername(): ?string
  9.     {
  10.         return $this->username;
  11.     }
  12.     public function setUsername(?string $username): void
  13.     {
  14.         $this->username $username;
  15.     }
  16.     public function getPassword(): ?string
  17.     {
  18.         return $this->password;
  19.     }
  20.     public function setPassword(?string $password): void
  21.     {
  22.         $this->password $password;
  23.     }
  24. }