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