| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 60% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class ProprietaryAccount extends Account |
||
| 8 | { |
||
| 9 | private string $id; |
||
| 10 | |||
| 11 | public function __construct(string $id) |
||
| 12 | { |
||
| 13 | $this->id = $id; |
||
| 14 | 5 | } |
|
| 15 | |||
| 16 | 5 | public function getId(): string |
|
| 17 | 5 | { |
|
| 18 | return (string) $this->id; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @inheritDoc |
||
| 23 | */ |
||
| 24 | public function getIdentification(): string |
||
| 27 | 1 | } |
|
| 28 | } |
||
| 29 |