1 | <?php |
||
8 | |||
9 | final class UserEntity implements UserEntityInterface |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var mixed |
||
14 | */ |
||
15 | private $identifier; |
||
16 | |||
17 | /** |
||
18 | * @param mixed $identifier |
||
19 | */ |
||
20 | public function __construct($identifier) |
||
24 | |||
25 | /** |
||
26 | * @return mixed |
||
27 | */ |
||
28 | public function getIdentifier() |
||
29 | { |
||
30 | return $this->identifier; |
||
31 | } |
||
34 |