src/Entity/SecurityDocument/Vocabulary.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\SecurityDocument;
  3. use App\Repository\SecurityDocument\VocabularyRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=VocabularyRepository::class)
  7.  * @ORM\Table(name="security_document_vocabulary")
  8.  */
  9. class Vocabulary
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="string", length=255)
  19.      */
  20.     private $templateProperty;
  21.     /**
  22.      * @ORM\Column(type="string", length=255)
  23.      */
  24.     private $replacementValue;
  25.     /**
  26.      * @ORM\Column(type="string", length=255)
  27.      */
  28.     private $description;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getTemplateProperty(): ?string
  34.     {
  35.         return $this->templateProperty;
  36.     }
  37.     public function setTemplateProperty(string $templateProperty): self
  38.     {
  39.         $this->templateProperty $templateProperty;
  40.         return $this;
  41.     }
  42.     public function getReplacementValue(): ?string
  43.     {
  44.         return $this->replacementValue;
  45.     }
  46.     public function setReplacementValue(string $replacementValue): self
  47.     {
  48.         $this->replacementValue $replacementValue;
  49.         return $this;
  50.     }
  51.     public function getDescription(): ?string
  52.     {
  53.         return $this->description;
  54.     }
  55.     public function setDescription(string $description): self
  56.     {
  57.         $this->description $description;
  58.         return $this;
  59.     }
  60. }