for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fhp\Model;
/**
* Class SEPAAccount
* @package Fhp\Model
*/
class SEPAAccount
{
/** @var string */
protected $iban;
protected $bic;
protected $accountNumber;
protected $subAccount;
protected $blz;
* Get iban
*
* @return string
public function getIban()
return $this->iban;
}
* Set iban
* @param string $iban
* @return $this
public function setIban($iban)
$this->iban = (string) $iban;
return $this;
* Get bic
public function getBic()
return $this->bic;
* Set bic
* @param string $bic
public function setBic($bic)
$this->bic = (string) $bic;
* Get accountNumber
public function getAccountNumber()
return $this->accountNumber;
* Set accountNumber
* @param string $accountNumber
public function setAccountNumber($accountNumber)
$this->accountNumber = (string) $accountNumber;
* Get subAccount
public function getSubAccount()
return $this->subAccount;
* Set subAccount
* @param string $subAccount
public function setSubAccount($subAccount)
$this->subAccount = (string) $subAccount;
* Get blz
public function getBlz()
return $this->blz;
* Set blz
* @param string $blz
public function setBlz($blz)
$this->blz = (string) $blz;