src/Entity/HostingPackages.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\HostingPackagesRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassHostingPackagesRepository::class)]
  7. class HostingPackages
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $name null;
  15.     #[ORM\ManyToOne]
  16.     #[ORM\JoinColumn(nullablefalse)]
  17.     private ?ProductTypes $type null;
  18.     #[ORM\Column]
  19.     private ?int $period null;
  20.     #[ORM\Column(typeTypes::DECIMALprecision10scale2)]
  21.     private ?string $registerPrice null;
  22.     #[ORM\Column(typeTypes::DECIMALprecision10scale2)]
  23.     private ?string $renewPrice null;
  24.     #[ORM\Column]
  25.     private ?bool $isFreeTrial null;
  26.     #[ORM\Column]
  27.     private ?bool $isRenewable null;
  28.     #[ORM\Column]
  29.     private ?bool $expires null;
  30.     #[ORM\Column]
  31.     private ?\DateTimeImmutable $createdAt null;
  32.     #[ORM\Column]
  33.     private ?\DateTimeImmutable $updatedAt null;
  34.     #[ORM\Column]
  35.     private ?bool $isActive null;
  36.     #[ORM\Column(length255)]
  37.     private ?string $dreamscapeName null;
  38.     #[ORM\Column]
  39.     private ?int $dreamscapeId null;
  40.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  41.     private ?string $shortDescription null;
  42.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  43.     private ?string $features null;
  44.     #[ORM\Column]
  45.     private ?bool $popular null;
  46.     #[ORM\Column]
  47.     private ?int $position null;
  48.     public function getId(): ?int
  49.     {
  50.         return $this->id;
  51.     }
  52.     public function getName(): ?string
  53.     {
  54.         return $this->name;
  55.     }
  56.     public function setName(string $name): self
  57.     {
  58.         $this->name $name;
  59.         return $this;
  60.     }
  61.     public function getType(): ?ProductTypes
  62.     {
  63.         return $this->type;
  64.     }
  65.     public function setType(?ProductTypes $type): self
  66.     {
  67.         $this->type $type;
  68.         return $this;
  69.     }
  70.     public function getPeriod(): ?int
  71.     {
  72.         return $this->period;
  73.     }
  74.     public function setPeriod(int $period): self
  75.     {
  76.         $this->period $period;
  77.         return $this;
  78.     }
  79.     public function getRegisterPrice(): ?string
  80.     {
  81.         return $this->registerPrice;
  82.     }
  83.     public function setRegisterPrice(string $registerPrice): self
  84.     {
  85.         $this->registerPrice $registerPrice;
  86.         return $this;
  87.     }
  88.     public function getRenewPrice(): ?string
  89.     {
  90.         return $this->renewPrice;
  91.     }
  92.     public function setRenewPrice(string $renewPrice): self
  93.     {
  94.         $this->renewPrice $renewPrice;
  95.         return $this;
  96.     }
  97.     public function getIsFreeTrial(): ?bool
  98.     {
  99.         return $this->isFreeTrial;
  100.     }
  101.     public function setIsFreeTrial(bool $isFreeTrial): self
  102.     {
  103.         $this->isFreeTrial $isFreeTrial;
  104.         return $this;
  105.     }
  106.     public function getIsRenewable(): ?bool
  107.     {
  108.         return $this->isRenewable;
  109.     }
  110.     public function setIsRenewable(bool $isRenewable): self
  111.     {
  112.         $this->isRenewable $isRenewable;
  113.         return $this;
  114.     }
  115.     public function getExpires(): ?bool
  116.     {
  117.         return $this->expires;
  118.     }
  119.     public function setExpires(bool $expires): self
  120.     {
  121.         $this->expires $expires;
  122.         return $this;
  123.     }
  124.     public function getCreatedAt(): ?\DateTimeImmutable
  125.     {
  126.         return $this->createdAt;
  127.     }
  128.     public function setCreatedAt(\DateTimeImmutable $createdAt): self
  129.     {
  130.         $this->createdAt $createdAt;
  131.         return $this;
  132.     }
  133.     public function getUpdatedAt(): ?\DateTimeImmutable
  134.     {
  135.         return $this->updatedAt;
  136.     }
  137.     public function setUpdatedAt(\DateTimeImmutable $updatedAt): self
  138.     {
  139.         $this->updatedAt $updatedAt;
  140.         return $this;
  141.     }
  142.     public function getIsActive(): ?bool
  143.     {
  144.         return $this->isActive;
  145.     }
  146.     public function setIsActive(bool $isActive): self
  147.     {
  148.         $this->isActive $isActive;
  149.         return $this;
  150.     }
  151.     public function getDreamscapeName(): ?string
  152.     {
  153.         return $this->dreamscapeName;
  154.     }
  155.     public function setDreamscapeName(string $dreamscapeName): self
  156.     {
  157.         $this->dreamscapeName $dreamscapeName;
  158.         return $this;
  159.     }
  160.     public function getDreamscapeId(): ?int
  161.     {
  162.         return $this->dreamscapeId;
  163.     }
  164.     public function setDreamscapeId(int $dreamscapeId): self
  165.     {
  166.         $this->dreamscapeId $dreamscapeId;
  167.         return $this;
  168.     }
  169.     public function getShortDescription(): ?string
  170.     {
  171.         return $this->shortDescription;
  172.     }
  173.     public function setShortDescription(?string $shortDescription): self
  174.     {
  175.         $this->shortDescription $shortDescription;
  176.         return $this;
  177.     }
  178.     public function getFeatures(): ?string
  179.     {
  180.         return $this->features;
  181.     }
  182.     public function setFeatures(?string $features): self
  183.     {
  184.         $this->features $features;
  185.         return $this;
  186.     }
  187.     public function getPopular(): ?bool
  188.     {
  189.         return $this->popular;
  190.     }
  191.     public function setPopular(bool $popular): self
  192.     {
  193.         $this->popular $popular;
  194.         return $this;
  195.     }
  196.     public function getPosition(): ?int
  197.     {
  198.         return $this->position;
  199.     }
  200.     public function setPosition(int $position): self
  201.     {
  202.         $this->position $position;
  203.         return $this;
  204.     }
  205. }