for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Genkgo\Camt\DTO;
class BBANAccount extends Account
{
private string $bban;
public function __construct(string $bban)
$this->bban = $bban;
}
public function getBban(): string
return (string) $this->bban;
/**
* @inheritDoc
*/
public function getIdentification(): string