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