| Total Complexity | 3 | 
| Total Lines | 35 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 20 | class BankDetails implements \JsonSerializable { | 
            ||
| 21 | /**  | 
            ||
| 22 | * Issuer ID.  | 
            ||
| 23 | *  | 
            ||
| 24 | * @var string|null  | 
            ||
| 25 | */  | 
            ||
| 26 | private $issuer_id;  | 
            ||
| 27 | |||
| 28 | /**  | 
            ||
| 29 | * Get issuer ID.  | 
            ||
| 30 | *  | 
            ||
| 31 | * @return string|null  | 
            ||
| 32 | */  | 
            ||
| 33 | 1 | 	public function get_issuer_id() { | 
            |
| 35 | }  | 
            ||
| 36 | |||
| 37 | /**  | 
            ||
| 38 | * Set issuer ID.  | 
            ||
| 39 | *  | 
            ||
| 40 | * @param string|null $issuer_id Issuer ID.  | 
            ||
| 41 | * @return void  | 
            ||
| 42 | */  | 
            ||
| 43 | 2 | 	public function set_issuer_id( $issuer_id ) { | 
            |
| 45 | 2 | }  | 
            |
| 46 | |||
| 47 | /**  | 
            ||
| 48 | * JSON serialize.  | 
            ||
| 49 | *  | 
            ||
| 50 | * @return object  | 
            ||
| 51 | */  | 
            ||
| 52 | 2 | 	public function jsonSerialize() { | 
            |
| 58 |