Passed
Push — develop ( d68d1b...4b2eb4 )
by nguereza
01:51
created
src/Exception/WebauthnException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,6 +10,5 @@
 block discarded – undo
10 10
  * @class WebauthnException
11 11
  * @package Platine\Webauthn\Exception
12 12
  */
13
-class WebauthnException extends Exception
14
-{
13
+class WebauthnException extends Exception {
15 14
 }
Please login to merge, or discard this patch.
src/Attestation/AttestationData.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -169,9 +169,9 @@
 block discarded – undo
169 169
     }
170 170
 
171 171
     /**
172
-    * {@inheritdoc}
173
-    * @return mixed
174
-    */
172
+     * {@inheritdoc}
173
+     * @return mixed
174
+     */
175 175
     public function jsonSerialize()
176 176
     {
177 177
         return get_object_vars($this);
Please login to merge, or discard this patch.
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@  discard block
 block discarded – undo
19 19
  * @class AttestationData
20 20
  * @package Platine\Webauthn\Attestation
21 21
  */
22
-class AttestationData implements JsonSerializable
23
-{
22
+class AttestationData implements JsonSerializable {
24 23
     /**
25 24
      * The AuthenticatorData instance
26 25
      * @var AuthenticatorData
@@ -44,8 +43,7 @@  discard block
 block discarded – undo
44 43
      * @param string $binary
45 44
      * @param array<string> $allowedFormats
46 45
      */
47
-    public function __construct(string $binary, array $allowedFormats)
48
-    {
46
+    public function __construct(string $binary, array $allowedFormats) {
49 47
         $enc = CborDecoder::decode($binary);
50 48
 
51 49
         if (! is_array($enc) || ! array_key_exists('fmt', $enc) || ! is_string($enc['fmt'])) {
@@ -88,8 +86,7 @@  discard block
 block discarded – undo
88 86
      *
89 87
      * @return BaseFormat|FidoU2F|None|Packed
90 88
      */
91
-    public function getFormat()
92
-    {
89
+    public function getFormat() {
93 90
         return $this->format;
94 91
     }
95 92
 
@@ -172,8 +169,7 @@  discard block
 block discarded – undo
172 169
     * {@inheritdoc}
173 170
     * @return mixed
174 171
     */
175
-    public function jsonSerialize()
176
-    {
172
+    public function jsonSerialize() {
177 173
         return get_object_vars($this);
178 174
     }
179 175
 
Please login to merge, or discard this patch.
src/Attestation/AuthenticatorData.php 2 patches
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -15,8 +15,7 @@  discard block
 block discarded – undo
15 15
  * @class AuthenticatorData
16 16
  * @package Platine\Webauthn\Attestation
17 17
  */
18
-class AuthenticatorData implements JsonSerializable
19
-{
18
+class AuthenticatorData implements JsonSerializable {
20 19
     public const EC2_TYPE = 2;
21 20
     public const RSA_TYPE = 3;
22 21
 
@@ -60,8 +59,7 @@  discard block
 block discarded – undo
60 59
      * Create new instance
61 60
      * @param string $binary
62 61
      */
63
-    public function __construct(string $binary)
64
-    {
62
+    public function __construct(string $binary) {
65 63
         if (strlen($binary) < 37) {
66 64
             throw new WebauthnException('Invalid authenticator data provided');
67 65
         }
@@ -225,8 +223,7 @@  discard block
 block discarded – undo
225 223
     * {@inheritdoc}
226 224
     * @return mixed
227 225
     */
228
-    public function jsonSerialize()
229
-    {
226
+    public function jsonSerialize() {
230 227
         return get_object_vars($this);
231 228
     }
232 229
 
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -270,9 +270,9 @@
 block discarded – undo
270 270
 
271 271
 
272 272
     /**
273
-    * {@inheritdoc}
274
-    * @return mixed
275
-    */
273
+     * {@inheritdoc}
274
+     * @return mixed
275
+     */
276 276
     public function jsonSerialize()
277 277
     {
278 278
         return get_object_vars($this);
Please login to merge, or discard this patch.
src/Attestation/Format/None.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 class None extends BaseFormat
12 12
 {
13 13
     /**
14
-    * {@inheritdoc}
15
-    */
14
+     * {@inheritdoc}
15
+     */
16 16
     public function validateAttestation(string $clientData): bool
17 17
     {
18 18
         return true;
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
8 8
  * @class None
9 9
  * @package Platine\Webauthn\Attestation\Format
10 10
  */
11
-class None extends BaseFormat
12
-{
11
+class None extends BaseFormat {
13 12
     /**
14 13
     * {@inheritdoc}
15 14
     */
Please login to merge, or discard this patch.
src/Attestation/Format/FidoU2F.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-    * {@inheritdoc}
83
-    */
82
+     * {@inheritdoc}
83
+     */
84 84
     public function getCertificatePem(): string
85 85
     {
86 86
         $pem = '-----BEGIN CERTIFICATE-----' . "\n";
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
     }
92 92
 
93 93
     /**
94
-    * {@inheritdoc}
95
-    */
94
+     * {@inheritdoc}
95
+     */
96 96
     public function validateAttestation(string $clientData): bool
97 97
     {
98 98
         $publicKey = openssl_pkey_get_public($this->getCertificatePem());
@@ -129,8 +129,8 @@  discard block
 block discarded – undo
129 129
     }
130 130
 
131 131
     /**
132
-    * {@inheritdoc}
133
-    */
132
+     * {@inheritdoc}
133
+     */
134 134
     public function validateRootCertificate(array $rootCertificates): bool
135 135
     {
136 136
         $chain = $this->createX5cChainFile();
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
  * @class FidoU2F
13 13
  * @package Platine\Webauthn\Attestation\Format
14 14
  */
15
-class FidoU2F extends BaseFormat
16
-{
15
+class FidoU2F extends BaseFormat {
17 16
     /**
18 17
      * The algorithm used
19 18
      * @var int
Please login to merge, or discard this patch.
src/Attestation/Format/Packed.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-    * {@inheritdoc}
92
-    */
91
+     * {@inheritdoc}
92
+     */
93 93
     public function getCertificatePem(): ?string
94 94
     {
95 95
         if (empty($this->x5c)) {
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
     }
101 101
 
102 102
     /**
103
-    * {@inheritdoc}
104
-    */
103
+     * {@inheritdoc}
104
+     */
105 105
     public function validateAttestation(string $clientData): bool
106 106
     {
107 107
         if (! empty($this->x5c)) {
@@ -112,8 +112,8 @@  discard block
 block discarded – undo
112 112
     }
113 113
 
114 114
     /**
115
-    * {@inheritdoc}
116
-    */
115
+     * {@inheritdoc}
116
+     */
117 117
     public function validateRootCertificate(array $rootCertificates): bool
118 118
     {
119 119
         if (empty($this->x5c)) {
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
  * @class Packed
13 13
  * @package Platine\Webauthn\Attestation\Format
14 14
  */
15
-class Packed extends BaseFormat
16
-{
15
+class Packed extends BaseFormat {
17 16
     /**
18 17
      * The algorithm used
19 18
      * @var int
Please login to merge, or discard this patch.
src/Attestation/Format/Tpm.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-    * {@inheritdoc}
136
-    */
135
+     * {@inheritdoc}
136
+     */
137 137
     public function getCertificatePem(): ?string
138 138
     {
139 139
         if (empty($this->x5c)) {
@@ -144,16 +144,16 @@  discard block
 block discarded – undo
144 144
     }
145 145
 
146 146
     /**
147
-    * {@inheritdoc}
148
-    */
147
+     * {@inheritdoc}
148
+     */
149 149
     public function validateAttestation(string $clientData): bool
150 150
     {
151 151
         return $this->validateOverX5C($clientData);
152 152
     }
153 153
 
154 154
     /**
155
-    * {@inheritdoc}
156
-    */
155
+     * {@inheritdoc}
156
+     */
157 157
     public function validateRootCertificate(array $rootCertificates): bool
158 158
     {
159 159
         if (empty($this->x5c)) {
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
         $dataToVerify = $this->authenticatorData->getBinary();
207 207
         $dataToVerify .= $clientData;
208 208
 
209
-         // Verify that magic is set to TPM_GENERATED_VALUE.
209
+            // Verify that magic is set to TPM_GENERATED_VALUE.
210 210
         if ($this->certInfo->getBytes(0, 4) !== self::TPM_GENERATED_VALUE) {
211 211
             throw new WebauthnException('TPM magic value not the same TPM_GENERATED_VALUE');
212 212
         }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
  * @class Tpm
13 13
  * @package Platine\Webauthn\Attestation\Format
14 14
  */
15
-class Tpm extends BaseFormat
16
-{
15
+class Tpm extends BaseFormat {
17 16
     public const TPM_GENERATED_VALUE = "\xFF\x54\x43\x47";
18 17
     public const TPM_ST_ATTEST_CERTIFY = "\x80\x17";
19 18
     /**
Please login to merge, or discard this patch.
src/WebauthnConfiguration.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,7 @@
 block discarded – undo
10 10
  * @class WebauthnConfiguration
11 11
  * @package Platine\Webauthn
12 12
  */
13
-class WebauthnConfiguration extends AbstractConfiguration
14
-{
13
+class WebauthnConfiguration extends AbstractConfiguration {
15 14
     /**
16 15
      * {@inheritdoc}
17 16
      */
Please login to merge, or discard this patch.
src/Entity/PublicKey.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,8 +11,7 @@  discard block
 block discarded – undo
11 11
  * @class PublicKey
12 12
  * @package Platine\Webauthn\Entity
13 13
  */
14
-class PublicKey implements JsonSerializable
15
-{
14
+class PublicKey implements JsonSerializable {
16 15
     /**
17 16
      * Default timeout
18 17
      * @var int
@@ -347,8 +346,7 @@  discard block
 block discarded – undo
347 346
     * {@inheritdoc}
348 347
     * @return mixed
349 348
     */
350
-    public function jsonSerialize()
351
-    {
349
+    public function jsonSerialize() {
352 350
         return get_object_vars($this);
353 351
     }
354 352
 }
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -169,9 +169,9 @@
 block discarded – undo
169 169
     }
170 170
 
171 171
     /**
172
-    * {@inheritdoc}
173
-    * @return mixed
174
-    */
172
+     * {@inheritdoc}
173
+     * @return mixed
174
+     */
175 175
     public function jsonSerialize()
176 176
     {
177 177
         return get_object_vars($this);
Please login to merge, or discard this patch.