| @@ -1,6 +1,6 @@ discard block | ||
| 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 | ||
| 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 | |