1 | <?php |
||
13 | class AuthenticationResponse extends AbstractMessage |
||
14 | { |
||
15 | |||
16 | const STATUS_SUCCESS = 'success'; |
||
17 | const STATUS_FAILURE = 'failure'; |
||
18 | |||
19 | |||
20 | /** |
||
21 | * AuthenticationResponse constructor. |
||
22 | * |
||
23 | * @param string $status |
||
24 | */ |
||
25 | 4 | public function __construct($status) |
|
29 | |||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | 2 | public function getStatus() |
|
38 | |||
39 | } |
||
40 |