for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by Carl Owens ([email protected])
* Company: PartFire Ltd (www.partfire.co.uk)
* Copyright © 2017 PartFire Ltd. All rights reserved.
*
* User: Carl Owens
* Date: 20/01/2017
* Time: 13:03
* File: IbanBankAccount.php
**/
namespace PartFire\MangoPayBundle\Models\DTOs;
class IbanBankAccount extends AbstractBankAccount
{
private $iban;
private $bic;
* @return mixed
*/
public function getIban()
return $this->iban;
}
* @param mixed $iban
public function setIban($iban)
$this->iban = $iban;
public function getBic()
return $this->bic;
* @param mixed $bic
public function setBic($bic)
$this->bic = $bic;