src/AppBundle/AdminBundle/Entity/Admin_Logout.php line 226

Open in your IDE?
  1. <?php
  2. namespace App\AppBundle\AdminBundle\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use JsonSerializable;
  7. /**
  8.  * AddOns
  9.  *
  10.  * @ORM\Entity
  11.  * @ORM\Table(name="admin_logout")
  12.  * @ORM\HasLifecycleCallbacks()
  13.  */
  14. class Admin_Logout implements JsonSerializable
  15. {
  16.     /**
  17.      * @ORM\Column(type="integer")
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="AUTO")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @ORM\Column(type="integer", nullable=false)
  24.      * @Assert\NotBlank()
  25.      */
  26.     private $admin_user_id;
  27.     /**
  28.      * @ORM\Column(type="string", nullable=false)
  29.      * @Assert\NotBlank()
  30.      */
  31.     private $token;
  32.     /**
  33.      * @ORM\Column(type="string", nullable=true)
  34.      * @Assert\NotBlank()
  35.      */
  36.     private $ip_address;
  37.     /**
  38.      * @ORM\Column(type="string", nullable=true)
  39.      * @Assert\NotBlank()
  40.      */
  41.     private $device_name;
  42.     /**
  43.      * @ORM\Column(type="string", nullable=true)
  44.      * @Assert\NotBlank()
  45.      */
  46.     private $device_os_version;
  47.     /**
  48.      * @return mixed
  49.      */
  50.     public function getId()
  51.     {
  52.         return $this->id;
  53.     }
  54.     /**
  55.      * @return mixed
  56.      */
  57.     public function getAdminUserId()
  58.     {
  59.         return $this->admin_user_id;
  60.     }
  61.     /**
  62.      * @param mixed $admin_user_id
  63.      */
  64.     public function setAdminUserId($admin_user_id): void
  65.     {
  66.         $this->admin_user_id $admin_user_id;
  67.     }
  68.     /**
  69.      * @return mixed
  70.      */
  71.     public function getToken()
  72.     {
  73.         return $this->token;
  74.     }
  75.     /**
  76.      * @param mixed $token
  77.      */
  78.     public function setToken($token)
  79.     {
  80.         $this->token $token;
  81.     }
  82.     /**
  83.      * @return mixed
  84.      */
  85.     public function getIpAddress()
  86.     {
  87.         return $this->ip_address;
  88.     }
  89.     /**
  90.      * @param mixed $ip_address
  91.      */
  92.     public function setIpAddress($ip_address)
  93.     {
  94.         $this->ip_address $ip_address;
  95.     }
  96.     /**
  97.      * @return mixed
  98.      */
  99.     public function getDeviceName()
  100.     {
  101.         return $this->device_name;
  102.     }
  103.     /**
  104.      * @param mixed $device_name
  105.      */
  106.     public function setDeviceName($device_name)
  107.     {
  108.         $this->device_name $device_name;
  109.     }
  110.     /**
  111.      * @return mixed
  112.      */
  113.     public function getDeviceOsVersion()
  114.     {
  115.         return $this->device_os_version;
  116.     }
  117.     /**
  118.      * @param mixed $device_os_version
  119.      */
  120.     public function setDeviceOsVersion($device_os_version)
  121.     {
  122.         $this->device_os_version $device_os_version;
  123.     }
  124.     /**
  125.      * @var string $created
  126.      *
  127.      * @ORM\Column(name="created_at", type="string", nullable=false)
  128.      */
  129.     protected $createdAt;
  130.     /**
  131.      * @var string $updated
  132.      *
  133.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  134.      */
  135.     protected $updatedAt;
  136.     public function getCreatedAt()
  137.     {
  138.         return $this->createdAt;
  139.     }
  140.     public function setCreatedAt($createdAt)
  141.     {
  142.         $this->createdAt $createdAt;
  143.         return $this;
  144.     }
  145.     public function getUpdatedAt()
  146.     {
  147.         return $this->updatedAt;
  148.     }
  149.     public function setUpdatedAt($updatedAt)
  150.     {
  151.         $this->updatedAt $updatedAt;
  152.         return $this;
  153.     }
  154.     /**
  155.      * @ORM\PrePersist
  156.      * @ORM\PreUpdate
  157.      */
  158.     public function updatedTimestamps()
  159.     {
  160.         $this->setUpdatedAt(round(microtime(true) * 1000));
  161.         if ($this->getCreatedAt() === null) {
  162.             $this->setCreatedAt(round(microtime(true) * 1000));
  163.         }
  164.     }
  165.     public function __construct() {
  166.         $this->setCreatedAt(round(microtime(true) * 1000));
  167.     }
  168.     public function jsonSerialize()
  169.     {
  170.         return array(
  171.             'id' => $this->id
  172.         );
  173.     }
  174. }