src/Entity/Subscribers.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Subscribers
  6.  *
  7.  * @ORM\Table(name="Subscribers")
  8.  * @ORM\Entity(repositoryClass="App\Repository\SubscribersRepository")
  9.  */
  10. class Subscribers
  11. {
  12.     /**
  13.      * @ORM\Column(name="id", type="integer")
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue(strategy="AUTO")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(name="email", type="string", length=255,nullable=true)
  20.      */
  21.     private $email;
  22.     /**
  23.      * @ORM\Column(name="date", type="datetime",nullable=true)
  24.      */
  25.     private $date;
  26.     /**
  27.      * @ORM\Column(name="IP", type="string", length=255, nullable=true)
  28.      */
  29.     private $iP;
  30.     /**
  31.      * @ORM\Column(name="browser", type="string", length=255)
  32.      */
  33.     private $browser;
  34.     /**
  35.      * @ORM\Column(name="OS", type="string", length=255)
  36.      */
  37.     private $oS;
  38.     /**
  39.      * @ORM\Column(type="string", length=255, nullable=true)
  40.      */
  41.     private $fname;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      */
  45.     private $lname;
  46.     public function getId()
  47.     {
  48.         return $this->id;
  49.     }
  50.     public function setEmail($email)
  51.     {
  52.         $this->email $email;
  53.         return $this;
  54.     }
  55.     public function getEmail()
  56.     {
  57.         return $this->email;
  58.     }
  59.     public function setDate($date)
  60.     {
  61.         $this->date $date;
  62.         return $this;
  63.     }
  64.     public function getDate()
  65.     {
  66.         return $this->date;
  67.     }
  68.     public function setIP($iP)
  69.     {
  70.         $this->iP $iP;
  71.         return $this;
  72.     }
  73.     public function getIP()
  74.     {
  75.         return $this->iP;
  76.     }
  77.     public function setBrowser($browser)
  78.     {
  79.         $this->browser $browser;
  80.         return $this;
  81.     }
  82.     public function getBrowser()
  83.     {
  84.         return $this->browser;
  85.     }
  86.     public function setOS($oS)
  87.     {
  88.         $this->oS $oS;
  89.         return $this;
  90.     }
  91.     public function getOS()
  92.     {
  93.         return $this->oS;
  94.     }
  95.     public function getFname(): ?string
  96.     {
  97.         return $this->fname;
  98.     }
  99.     public function setFname(?string $fname): self
  100.     {
  101.         $this->fname $fname;
  102.         return $this;
  103.     }
  104.     public function getLname(): ?string
  105.     {
  106.         return $this->lname;
  107.     }
  108.     public function setLname(?string $lname): self
  109.     {
  110.         $this->lname $lname;
  111.         return $this;
  112.     }
  113. }