src/Entity/Subscription.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\SubscriptionRepository")
  8.  * @UniqueEntity("email")
  9.  */
  10. class Subscription
  11. {
  12.     /**
  13.      * @ORM\Id()
  14.      * @ORM\GeneratedValue()
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string")
  20.      */
  21.     private $countryCode;
  22.     /**
  23.      * @ORM\Column(type="string", nullable=true)
  24.      */
  25.     private $phoneNumber;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, unique=true, nullable=false)
  28.      */
  29.     private $email;
  30.     private $optIn;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getEmail(): ?string
  36.     {
  37.         return $this->email;
  38.     }
  39.     public function setEmail(string $email): self
  40.     {
  41.         $this->email $email;
  42.         return $this;
  43.     }
  44.     /**
  45.      * Get the value of countryCode
  46.      */ 
  47.     public function getCountryCode()
  48.     {
  49.         return $this->countryCode;
  50.     }
  51.     /**
  52.      * Set the value of countryCode
  53.      *
  54.      * @return  self
  55.      */ 
  56.     public function setCountryCode($countryCode)
  57.     {
  58.         $this->countryCode $countryCode;
  59.         return $this;
  60.     }
  61.     /**
  62.      * Get the value of phoneNumber
  63.      */ 
  64.     public function getPhoneNumber()
  65.     {
  66.         return $this->phoneNumber;
  67.     }
  68.     /**
  69.      * Set the value of phoneNumber
  70.      *
  71.      * @return  self
  72.      */ 
  73.     public function setPhoneNumber($phoneNumber)
  74.     {
  75.         $this->phoneNumber $phoneNumber;
  76.         return $this;
  77.     }
  78.     /**
  79.      * Get the value of optIn
  80.      */ 
  81.     public function getOptIn()
  82.     {
  83.         return $this->optIn;
  84.     }
  85.     /**
  86.      * Set the value of optIn
  87.      *
  88.      * @return  self
  89.      */ 
  90.     public function setOptIn($optIn)
  91.     {
  92.         $this->optIn $optIn;
  93.         return $this;
  94.     }
  95. }