src/Entity/Documentation/HouseGuideNumber.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Documentation;
  3. use App\Repository\Documentation\HouseGuideNumberRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=HouseGuideNumberRepository::class)
  7.  */
  8. class HouseGuideNumber
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $number;
  20.     /**
  21.      * @ORM\OneToOne(targetEntity=HouseGuide::class, inversedBy="houseGuideNumber", cascade={"persist", "remove"})
  22.      * @ORM\JoinColumn(nullable=true)
  23.      */
  24.     private $houseGuide;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getNumber(): ?string
  30.     {
  31.         return $this->number;
  32.     }
  33.     public function setNumber(string $number): self
  34.     {
  35.         $this->number $number;
  36.         return $this;
  37.     }
  38.     public function getHouseGuide(): ?HouseGuide
  39.     {
  40.         return $this->houseGuide;
  41.     }
  42.     public function setHouseGuide(HouseGuide $houseGuide): self
  43.     {
  44.         $this->houseGuide $houseGuide;
  45.         return $this;
  46.     }
  47.     public function __toString()
  48.     {
  49.         return $this->number;
  50.     }
  51. }