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