| 1 | <?php |
||
| 2 | |||
| 3 | namespace Lendable\GoCardlessEnterpriseBundle\Entity; |
||
| 4 | |||
| 5 | class CreditorBankAccount extends \Lendable\GoCardlessEnterprise\Model\CreditorBankAccount |
||
| 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
Loading history...
|
|||
| 11 | } |
||
| 12 | } |
||
| 13 |