1 | <?php |
||
2 | |||
3 | namespace Lendable\GoCardlessEnterpriseBundle\Entity; |
||
4 | |||
5 | class Creditor extends \Lendable\GoCardlessEnterprise\Model\Creditor |
||
6 | { |
||
7 | public function fromArray($data) |
||
8 | { |
||
9 | parent::fromArray($data); |
||
10 | $this->setCreatedAt(new \DateTime($this->getCreatedAt())); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
11 | } |
||
12 | } |
||
13 |