src/AppBundle/MainBundle/Entity/WP_Payment.php line 91

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: apple
  5.  * Date: 29/03/19
  6.  * Time: 2:32 PM
  7.  */
  8. namespace App\AppBundle\MainBundle\Entity;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. use JsonSerializable;
  12. /**
  13.  * AddOns
  14.  *
  15.  * @ORM\Entity
  16.  * @ORM\Table(name="wp_payment")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  */
  19. class WP_Payment implements JsonSerializable
  20. {
  21.     /**
  22.      * @ORM\Column(type="integer")
  23.      * @ORM\Id
  24.      * @ORM\GeneratedValue(strategy="AUTO")
  25.      */
  26.     private $id;
  27.     /**
  28.      * @ORM\Column(type="string", nullable=false)
  29.      * @Assert\NotBlank()
  30.      */
  31.     private $name;
  32.     /**
  33.      * @ORM\Column(type="boolean", nullable=false)
  34.      * @Assert\NotBlank()
  35.      */
  36.     private $active;
  37.     /**
  38.      * @return mixed
  39.      */
  40.     public function getId()
  41.     {
  42.         return $this->id;
  43.     }
  44.     /**
  45.      * @return mixed
  46.      */
  47.     public function getName()
  48.     {
  49.         return $this->name;
  50.     }
  51.     /**
  52.      * @param mixed $method_name
  53.      */
  54.     public function setName($name)
  55.     {
  56.         $this->name $name;
  57.     }
  58.     /**
  59.      * @return mixed
  60.      */
  61.     public function getActive()
  62.     {
  63.         return $this->active;
  64.     }
  65.     /**
  66.      * @param mixed $active
  67.      */
  68.     public function setActive($active)
  69.     {
  70.         $this->active $active;
  71.     }
  72.         
  73.     public function jsonSerialize()
  74.     {
  75.         return array(
  76.             'id' => $this->id,
  77.             'active' => $this->active,
  78.             'name' => $this->name
  79.         );
  80.     }
  81.     /**
  82.      * @var string $created
  83.      *
  84.      * @ORM\Column(name="created_at", type="string", nullable=false)
  85.      */
  86.     protected $createdAt;
  87.     /**
  88.      * @var string $updated
  89.      *
  90.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  91.      */
  92.     protected $updatedAt;
  93.     public function getCreatedAt()
  94.     {
  95.         return $this->createdAt;
  96.     }
  97.     public function setCreatedAt($createdAt)
  98.     {
  99.         $this->createdAt $createdAt;
  100.         return $this;
  101.     }
  102.     public function getUpdatedAt()
  103.     {
  104.         return $this->updatedAt;
  105.     }
  106.     public function setUpdatedAt($updatedAt)
  107.     {
  108.         $this->updatedAt $updatedAt;
  109.         return $this;
  110.     }
  111.     /**
  112.      * @ORM\PrePersist
  113.      * @ORM\PreUpdate
  114.      */
  115.     public function updatedTimestamps()
  116.     {
  117.         $this->setUpdatedAt(round(microtime(true) * 1000));
  118.         if ($this->getCreatedAt() === null) {
  119.             $this->setCreatedAt(round(microtime(true) * 1000));
  120.         }
  121.     }
  122.     public function __construct() {
  123.         $this->setCreatedAt(round(microtime(true) * 1000));
  124.     }
  125. }