src/Entity/Comment.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CommentRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=CommentRepository::class)
  7.  */
  8. class Comment
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $pid;
  20.     /**
  21.      * @ORM\Column(type="integer")
  22.      */
  23.     private $nid;
  24.     /**
  25.      * @ORM\Column(type="integer")
  26.      */
  27.     private $uid;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $subject;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $hostname;
  36.     /**
  37.      * @ORM\Column(type="datetime")
  38.      */
  39.     private $created;
  40.     /**
  41.      * @ORM\Column(type="datetime")
  42.      */
  43.     private $updated;
  44.     /**
  45.      * @ORM\Column(type="boolean")
  46.      */
  47.     private $status;
  48.     /**
  49.      * @ORM\Column(type="string", length=255)
  50.      */
  51.     private $thread;
  52.     /**
  53.      * @ORM\Column(type="string", length=255)
  54.      */
  55.     private $name;
  56.     /**
  57.      * @ORM\Column(type="string", length=255)
  58.      */
  59.     private $email;
  60.     /**
  61.      * @ORM\Column(type="string", length=255)
  62.      */
  63.     private $homepage;
  64.     /**
  65.      * @ORM\Column(type="string", length=255)
  66.      */
  67.     private $language;
  68.     public function getId(): ?int
  69.     {
  70.         return $this->id;
  71.     }
  72.     public function getPid(): ?int
  73.     {
  74.         return $this->pid;
  75.     }
  76.     public function setPid(int $pid): self
  77.     {
  78.         $this->pid $pid;
  79.         return $this;
  80.     }
  81.     public function getNid(): ?int
  82.     {
  83.         return $this->nid;
  84.     }
  85.     public function setNid(int $nid): self
  86.     {
  87.         $this->nid $nid;
  88.         return $this;
  89.     }
  90.     public function getUid(): ?int
  91.     {
  92.         return $this->uid;
  93.     }
  94.     public function setUid(int $uid): self
  95.     {
  96.         $this->uid $uid;
  97.         return $this;
  98.     }
  99.     public function getSubject(): ?string
  100.     {
  101.         return $this->subject;
  102.     }
  103.     public function setSubject(string $subject): self
  104.     {
  105.         $this->subject $subject;
  106.         return $this;
  107.     }
  108.     public function getHostname(): ?string
  109.     {
  110.         return $this->hostname;
  111.     }
  112.     public function setHostname(string $hostname): self
  113.     {
  114.         $this->hostname $hostname;
  115.         return $this;
  116.     }
  117.     public function getCreated(): ?\DateTimeInterface
  118.     {
  119.         return $this->created;
  120.     }
  121.     public function setCreated(\DateTimeInterface $created): self
  122.     {
  123.         $this->created $created;
  124.         return $this;
  125.     }
  126.     public function getUpdated(): ?\DateTimeInterface
  127.     {
  128.         return $this->updated;
  129.     }
  130.     public function setUpdated(\DateTimeInterface $updated): self
  131.     {
  132.         $this->updated $updated;
  133.         return $this;
  134.     }
  135.     public function getStatus(): ?bool
  136.     {
  137.         return $this->status;
  138.     }
  139.     public function setStatus(bool $status): self
  140.     {
  141.         $this->status $status;
  142.         return $this;
  143.     }
  144.     public function getThread(): ?string
  145.     {
  146.         return $this->thread;
  147.     }
  148.     public function setThread(string $thread): self
  149.     {
  150.         $this->thread $thread;
  151.         return $this;
  152.     }
  153.     public function getName(): ?string
  154.     {
  155.         return $this->name;
  156.     }
  157.     public function setName(string $name): self
  158.     {
  159.         $this->name $name;
  160.         return $this;
  161.     }
  162.     public function getEmail(): ?string
  163.     {
  164.         return $this->email;
  165.     }
  166.     public function setEmail(string $email): self
  167.     {
  168.         $this->email $email;
  169.         return $this;
  170.     }
  171.     public function getHomepage(): ?string
  172.     {
  173.         return $this->homepage;
  174.     }
  175.     public function setHomepage(string $homepage): self
  176.     {
  177.         $this->homepage $homepage;
  178.         return $this;
  179.     }
  180.     public function getLanguage(): ?string
  181.     {
  182.         return $this->language;
  183.     }
  184.     public function setLanguage(string $language): self
  185.     {
  186.         $this->language $language;
  187.         return $this;
  188.     }
  189. }