src/Entity/HistoriquePage.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Table(name="ba_historique_page")
  6.  * @ORM\Entity(repositoryClass="App\Repository\HistoriquePageRepository")
  7.  */
  8. class HistoriquePage
  9. {
  10.     use \App\Traits\Timestampable;
  11.     use \App\Traits\Blameable;
  12.     
  13.     /**
  14.      * @ORM\Id()
  15.      * @ORM\GeneratedValue()
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="historiquePages")
  21.      */
  22.     private $user;
  23.     /**
  24.      * @ORM\Column(type="text", nullable=true)
  25.      */
  26.     private $url;
  27.     /**
  28.      * @ORM\Column(type="text", nullable=true)
  29.      */
  30.     private $query;
  31.     /**
  32.      * @ORM\Column(type="text", nullable=true)
  33.      */
  34.     private $request;
  35.     /**
  36.      * @ORM\Column(type="boolean", nullable=true)
  37.      */
  38.     private $userActif;
  39.     public function getId(): ?int
  40.     {
  41.         return $this->id;
  42.     }
  43.     public function getUser(): ?User
  44.     {
  45.         return $this->user;
  46.     }
  47.     public function setUser(?User $user): self
  48.     {
  49.         $this->user $user;
  50.         return $this;
  51.     }
  52.     public function getUrl(): ?string
  53.     {
  54.         return $this->url;
  55.     }
  56.     public function setUrl(?string $url): self
  57.     {
  58.         $this->url $url;
  59.         return $this;
  60.     }
  61.     public function getQuery(): ?string
  62.     {
  63.         return $this->query;
  64.     }
  65.     public function setQuery(?string $query): self
  66.     {
  67.         $this->query $query;
  68.         return $this;
  69.     }
  70.     public function getRequest(): ?string
  71.     {
  72.         return $this->request;
  73.     }
  74.     public function setRequest(?string $request): self
  75.     {
  76.         $this->request $request;
  77.         return $this;
  78.     }
  79.     public function getUserActif(): ?bool
  80.     {
  81.         return $this->userActif;
  82.     }
  83.     public function setUserActif(?bool $userActif): self
  84.     {
  85.         $this->userActif $userActif;
  86.         return $this;
  87.     }
  88. }