src/Entity/Log.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="log")
  6.  * @ORM\Entity(repositoryClass="App\Repository\LogRepository")
  7.  */
  8. class Log
  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\Column(type="string", length=255)
  21.      */
  22.     private $action;
  23.     /**
  24.      * @ORM\Column(type="text", nullable=true)
  25.      */
  26.     private $url;
  27.     /**
  28.      * @ORM\Column(type="text", length=500, nullable=true)
  29.      */
  30.     private $user_agent;
  31.     /**
  32.      * @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="logs")
  33.      * @ORM\JoinColumn(nullable=true)
  34.      */
  35.     private $user_crea;
  36.     /**
  37.      * @ORM\ManyToOne(targetEntity=Mine::class, inversedBy="logs")
  38.      * @ORM\JoinColumn(nullable=true)
  39.      */
  40.     private $mine;
  41.       
  42.     public function getId(): ?int
  43.     {
  44.         return $this->id;
  45.     }
  46.     public function getAction(): ?string
  47.     {
  48.         return $this->action;
  49.     }
  50.     public function setAction(string $action): self
  51.     {
  52.         $this->action $action;
  53.         return $this;
  54.     }
  55.     public function getUrl(): ?string
  56.     {
  57.         return $this->url;
  58.     }
  59.     public function setUrl(?string $url): self
  60.     {
  61.         $this->url $url;
  62.         return $this;
  63.     }
  64.     public function getUserAgent(): ?string
  65.     {
  66.         return $this->user_agent;
  67.     }
  68.     public function setUserAgent(?string $user_agent): self
  69.     {
  70.         $this->user_agent $user_agent;
  71.         return $this;
  72.     }
  73.     public function getUserCrea(): ?User
  74.     {
  75.         return $this->user_crea;
  76.     }
  77.     public function setUserCrea(?User $user_crea): self
  78.     {
  79.         $this->user_crea $user_crea;
  80.         return $this;
  81.     }
  82.     public function getCreatedAt(): ?\DateTimeInterface
  83.     {
  84.         return $this->createdAt;
  85.     }
  86.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  87.     {
  88.         $this->createdAt $createdAt;
  89.         return $this;
  90.     }
  91.     public function getUpdatedAt(): ?\DateTimeInterface
  92.     {
  93.         return $this->updatedAt;
  94.     }
  95.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  96.     {
  97.         $this->updatedAt $updatedAt;
  98.         return $this;
  99.     }
  100.     public function getCreatedBy(): ?User
  101.     {
  102.         return $this->createdBy;
  103.     }
  104.     public function setCreatedBy(?User $createdBy): self
  105.     {
  106.         $this->createdBy $createdBy;
  107.         return $this;
  108.     }
  109.     public function getUpdatedBy(): ?User
  110.     {
  111.         return $this->updatedBy;
  112.     }
  113.     public function setUpdatedBy(?User $updatedBy): self
  114.     {
  115.         $this->updatedBy $updatedBy;
  116.         return $this;
  117.     }
  118.     public function getMine(): ?Mine
  119.     {
  120.         return $this->mine;
  121.     }
  122.     public function setMine(?Mine $mine): self
  123.     {
  124.         $this->mine $mine;
  125.         return $this;
  126.     }
  127. }