src/Entity/RookieDistrict.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. /**
  4.  * RookieDistrict
  5.  */
  6. class RookieDistrict
  7. {
  8.     private int $id;
  9.     private string $districtName;
  10.     private int $eventType;
  11.     private int $eventState;
  12.     public function getId(): int
  13.     {
  14.         return $this->id;
  15.     }
  16.     public function setId(int $id): void
  17.     {
  18.         $this->id $id;
  19.     }
  20.     public function getDistrictName(): string
  21.     {
  22.         return $this->districtName;
  23.     }
  24.     public function setDistrictName(string $districtName): void
  25.     {
  26.         $this->districtName $districtName;
  27.     }
  28.     public function getEventType(): int
  29.     {
  30.         return $this->eventType;
  31.     }
  32.     public function setEventType(int $eventType): void
  33.     {
  34.         $this->eventType $eventType;
  35.     }
  36.     public function getEventState(): int
  37.     {
  38.         return $this->eventState;
  39.     }
  40.     public function setEventState(int $eventState): void
  41.     {
  42.         $this->eventState $eventState;
  43.     }
  44. }