| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | 19 | public function __construct(string $clientDataJson, ByteBuffer $authenticatorData, ByteBuffer $signature, ?ByteBuffer $userHandle) |
|
| 25 | { |
||
| 26 | 19 | parent::__construct($clientDataJson); |
|
| 27 | 14 | $this->authenticatorData = $authenticatorData; |
|
| 28 | 14 | $this->signature = $signature; |
|
| 29 | 14 | $this->userHandle = $userHandle; |
|
| 30 | 14 | } |
|
| 52 |