Completed
Push — master ( 4cadd3...1796d9 )
by Oliver
11:20
created
src/Algorithm/Shamir.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
241 241
      *
242 242
      * @param  array  $keyX
243 243
      * @param  int    $threshold
244
-     * @return array
244
+     * @return string
245 245
      * @throws RuntimeException
246 246
      */
247 247
     protected function reverseCoefficients(array $keyX, int $threshold): array
Please login to merge, or discard this patch.
src/Random/OpenSslGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function __construct(int $bytes = PHP_INT_SIZE, bool $forceStrong = true)
38 38
     {
39
-        if($bytes < 1) {
39
+        if ($bytes < 1) {
40 40
             throw new OutOfRangeException('The length of the desired string of bytes. Must be a positive integer.');
41 41
         }
42 42
 
Please login to merge, or discard this patch.