Passed
Push — master ( 8b4393...abd35a )
by Florent
02:11
created
src/SignatureResponse.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * The MIT License (MIT)
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
         $counter = unpack('Nctr', $counterBytes)['ctr'];
192 192
         $signature = '';
193 193
         while (!feof($stream)) {
194
-            $signature .=fread($stream, 1024);
194
+            $signature .= fread($stream, 1024);
195 195
         }
196 196
         fclose($stream);
197 197
 
Please login to merge, or discard this patch.