src/Entity/SecurityDocument/Document.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity\SecurityDocument;
  3. use App\Entity\Documentation\Document as GeneratedDocument;
  4. use App\Repository\SecurityDocument\DocumentRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=DocumentRepository::class)
  10.  * @ORM\Table(name="security_document_document")
  11.  */
  12. class Document
  13. {
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $name;
  24.     /**
  25.      * @ORM\Column(type="text")
  26.      */
  27.     private $content;
  28.     /**
  29.      * @ORM\Column(type="boolean")
  30.      */
  31.     private $enabled;
  32.     /**
  33.      * @ORM\OneToMany(targetEntity=GeneratedDocument::class, mappedBy="securityDocument")
  34.      */
  35.     private $generatedDocuments;
  36.     public function __construct()
  37.     {
  38.         $this->generatedDocuments = new ArrayCollection();
  39.     }
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getName(): ?string
  45.     {
  46.         return $this->name;
  47.     }
  48.     public function setName(string $name): self
  49.     {
  50.         $this->name $name;
  51.         return $this;
  52.     }
  53.     public function getContent(): ?string
  54.     {
  55.         return $this->content;
  56.     }
  57.     public function setContent(string $content): self
  58.     {
  59.         $this->content $content;
  60.         return $this;
  61.     }
  62.     public function isEnabled(): ?bool
  63.     {
  64.         return $this->enabled;
  65.     }
  66.     public function setEnabled(bool $enabled): self
  67.     {
  68.         $this->enabled $enabled;
  69.         return $this;
  70.     }
  71.     /**
  72.      * @return Collection<int, GeneratedDocument>
  73.      */
  74.     public function getGeneratedDocuments(): Collection
  75.     {
  76.         return $this->generatedDocuments;
  77.     }
  78.     public function addGeneratedDocument(GeneratedDocument $generatedDocument): self
  79.     {
  80.         if (!$this->generatedDocuments->contains($generatedDocument)) {
  81.             $this->generatedDocuments[] = $generatedDocument;
  82.             $generatedDocument->setSecurityDocument($this);
  83.         }
  84.         return $this;
  85.     }
  86.     public function removeGeneratedDocument(GeneratedDocument $generatedDocument): self
  87.     {
  88.         if ($this->generatedDocuments->removeElement($generatedDocument)) {
  89.             // set the owning side to null (unless already changed)
  90.             if ($generatedDocument->getSecurityDocument() === $this) {
  91.                 $generatedDocument->setSecurityDocument(null);
  92.             }
  93.         }
  94.         return $this;
  95.     }
  96.     public function __toString()
  97.     {
  98.         return $this->name;
  99.     }
  100. }