Skip to content

Commit 8761be6

Browse files
authored
Bugs (#197)
1 parent c72ad01 commit 8761be6

File tree

61 files changed

+81
-84
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+81
-84
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"psr/log": "^1.1",
2929
"ramsey/uuid": "^3.8|^4.0",
3030
"spomky-labs/base64url": "^2.0",
31-
"spomky-labs/cbor-php": "^1.1|^2.0",
31+
"spomky-labs/cbor-php": "^1.0|^2.0",
3232
"symfony/process": "^3.0|^4.0|^5.0",
3333
"thecodingmachine/safe": "^1.1",
3434
"web-auth/cose-lib": "self.version",

src/AttestationStatement/AndroidKeyAttestationStatementSupport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* The MIT License (MIT)
77
*
8-
* Copyright (c) 2014-2020 Spomky-Labs
8+
* Copyright (c) 2014-2021 Spomky-Labs
99
*
1010
* This software may be modified and distributed under the terms
1111
* of the MIT license. See the LICENSE file for details.

src/AttestationStatement/AndroidSafetyNetAttestationStatementSupport.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* The MIT License (MIT)
77
*
8-
* Copyright (c) 2014-2020 Spomky-Labs
8+
* Copyright (c) 2014-2021 Spomky-Labs
99
*
1010
* This software may be modified and distributed under the terms
1111
* of the MIT license. See the LICENSE file for details.
@@ -231,13 +231,13 @@ private function getResponseBody(ResponseInterface $response): string
231231
{
232232
$responseBody = '';
233233
$response->getBody()->rewind();
234-
do {
234+
while (true) {
235235
$tmp = $response->getBody()->read(1024);
236236
if ('' === $tmp) {
237237
break;
238238
}
239239
$responseBody .= $tmp;
240-
} while (true);
240+
}
241241

242242
return $responseBody;
243243
}

src/AttestationStatement/AppleAttestationStatementSupport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* The MIT License (MIT)
77
*
8-
* Copyright (c) 2014-2020 Spomky-Labs
8+
* Copyright (c) 2014-2021 Spomky-Labs
99
*
1010
* This software may be modified and distributed under the terms
1111
* of the MIT license. See the LICENSE file for details.

src/AttestationStatement/AttestationObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* The MIT License (MIT)
77
*
8-
* Copyright (c) 2014-2020 Spomky-Labs
8+
* Copyright (c) 2014-2021 Spomky-Labs
99
*
1010
* This software may be modified and distributed under the terms
1111
* of the MIT license. See the LICENSE file for details.

src/AttestationStatement/AttestationObjectLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* The MIT License (MIT)
77
*
8-
* Copyright (c) 2014-2020 Spomky-Labs
8+
* Copyright (c) 2014-2021 Spomky-Labs
99
*
1010
* This software may be modified and distributed under the terms
1111
* of the MIT license. See the LICENSE file for details.

src/AttestationStatement/AttestationStatement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* The MIT License (MIT)
77
*
8-
* Copyright (c) 2014-2020 Spomky-Labs
8+
* Copyright (c) 2014-2021 Spomky-Labs
99
*
1010
* This software may be modified and distributed under the terms
1111
* of the MIT license. See the LICENSE file for details.

src/AttestationStatement/AttestationStatementSupport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* The MIT License (MIT)
77
*
8-
* Copyright (c) 2014-2020 Spomky-Labs
8+
* Copyright (c) 2014-2021 Spomky-Labs
99
*
1010
* This software may be modified and distributed under the terms
1111
* of the MIT license. See the LICENSE file for details.

src/AttestationStatement/AttestationStatementSupportManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* The MIT License (MIT)
77
*
8-
* Copyright (c) 2014-2020 Spomky-Labs
8+
* Copyright (c) 2014-2021 Spomky-Labs
99
*
1010
* This software may be modified and distributed under the terms
1111
* of the MIT license. See the LICENSE file for details.

src/AttestationStatement/FidoU2FAttestationStatementSupport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* The MIT License (MIT)
77
*
8-
* Copyright (c) 2014-2020 Spomky-Labs
8+
* Copyright (c) 2014-2021 Spomky-Labs
99
*
1010
* This software may be modified and distributed under the terms
1111
* of the MIT license. See the LICENSE file for details.

0 commit comments

Comments
 (0)