| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | abstract class AuthenticatorResponse implements \JsonSerializable |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | private $clientDataJSON; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * AuthenticatorResponse constructor. |
||
| 25 | * |
||
| 26 | * @param string $clientDataJSON |
||
| 27 | */ |
||
| 28 | public function __construct(string $clientDataJSON) |
||
| 29 | { |
||
| 30 | $this->clientDataJSON = $clientDataJSON; |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getClientDataJSON(): string |
||
| 39 | } |
||
| 40 | } |
||
| 41 |