Ejemplo n.º 1
0
 /**
  * @param $id
  * @return Creditor
  */
 public function getCreditor($id)
 {
     $creditor = new Creditor();
     $creditor->fromArray($this->get(self::ENDPOINT_CREDITORS, [], $id));
     return $creditor;
 }
 public function fromArray($data)
 {
     parent::fromArray($data);
     $this->setCreatedAt(new \DateTime($this->getCreatedAt()));
 }