for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of datamolino client.
*
* (c) 2018 cwd.at GmbH <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cwd\Datamolino\Model\Document;
class BankAccount
{
/** @var string|null */
private $bban;
private $bank_code;
private $bic;
private $iban;
/**
* @return null|string
public function getBban(): ?string
return $this->bban;
}
* @param null|string $bban
* @return BankAccount
public function setBban(?string $bban): BankAccount
$this->bban = $bban;
return $this;
* @return string|null
public function getBankCode(): ?string
return $this->bank_code;
* @param string|null $bank_code
public function setBankCode(?string $bank_code): BankAccount
$this->bank_code = $bank_code;
public function getBic(): ?string
return $this->bic;
* @param null|string $bic
public function setBic(?string $bic): BankAccount
$this->bic = $bic;
public function getIban(): ?string
return $this->iban;
* @param null|string $iban
public function setIban(?string $iban): BankAccount
$this->iban = $iban;