src\Entity\Retrieve.php line 4

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. class Retrieve
  4. {
  5. public ?string $email = null;
  6. public function getEmail(): ?string
  7. {
  8. return $this->email;
  9. }
  10. }