Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
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) |
|
28 | 4 | } |
|
29 | |||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | 2 | public function getStatus() |
|
40 |