1 | <?php |
||
20 | class UserOfIdQuery |
||
21 | { |
||
22 | /** |
||
23 | * The user id. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | private $id; |
||
28 | |||
29 | /** |
||
30 | * Constructor. |
||
31 | * |
||
32 | * @param string $anId The user id |
||
33 | */ |
||
34 | public function __construct($anId) |
||
41 | |||
42 | /** |
||
43 | * Gets the id. |
||
44 | * |
||
45 | * @return string |
||
46 | */ |
||
47 | public function id() |
||
51 | } |
||
52 |