| 1 | <?php |
||
| 11 | class ProprietaryAccount extends Account |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $id; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param string $id |
||
| 20 | */ |
||
| 21 | 5 | public function __construct($id) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function getId() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | 1 | public function getIdentification() |
|
| 41 | } |
||
| 42 |