Completed
Push — master ( 1ca5d8...990c37 )
by Michael
16:51 queued 06:54
created
load.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
 
38 38
     foreach ($files as $f) {
39
-        require_once __DIR__ . "/src/$f.php";
39
+        require_once __DIR__."/src/$f.php";
40 40
     }
41 41
 }
42 42
 // @codeCoverageIgnoreEnd
Please login to merge, or discard this patch.
src/Support.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,8 +70,8 @@
 block discarded – undo
70 70
         while ($i < $n) {
71 71
             $a = \substr($hexstr, $i, 2);
72 72
             $c = \pack('H*', $a);
73
-            $sbin.= $c;
74
-            $i+=2;
73
+            $sbin .= $c;
74
+            $i += 2;
75 75
         }
76 76
 
77 77
         return $sbin;
Please login to merge, or discard this patch.
src/Pkcs7.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         $pad = self::paddingString(Str::strlen($input), $blocksize);
42 42
 
43 43
         // Return input + padding
44
-        return $input . $pad;
44
+        return $input.$pad;
45 45
     }
46 46
 
47 47
     /**
Please login to merge, or discard this patch.
phpunit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require __DIR__ . '/vendor/autoload.php';
3
+require __DIR__.'/vendor/autoload.php';
4 4
 
5 5
 // backward compatibility
6 6
 if (!class_exists('\PHPUnit\Framework\TestCase')) {
Please login to merge, or discard this patch.
src/Hash.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         $hash = self::ihmac($input, $key, $cost, self::ALGO);
61 61
 
62 62
         // Return the salt + cost blob + hmac
63
-        return $salt . self::costHash($cost, $salt, $password) . $hash;
63
+        return $salt.self::costHash($cost, $salt, $password).$hash;
64 64
     }
65 65
 
66 66
     /**
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
         // Convert cost to base 256 then encrypt with OTP stream cipher
84 84
         $cost = Otp::crypt(self::dec2bin($cost), $password);
85 85
 
86
-        return $hash . $cost;
86
+        return $hash.$cost;
87 87
     }
88 88
 
89 89
     /**
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         $iter = abs($iter);
105 105
         
106 106
         for ($i = 0; $i <= $iter; $i++) {
107
-            $data = \hash_hmac($algo, $data . $i . $iter, $key, true);
107
+            $data = \hash_hmac($algo, $data.$i.$iter, $key, true);
108 108
         }
109 109
         
110 110
         if ($data === false) {
Please login to merge, or discard this patch.
src/Otp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         $length = Str::strlen($input);
54 54
         
55 55
         foreach ($chunks as $i => &$chunk) {
56
-            $chunk = $chunk ^ \hash_hmac($algo, $password . $length, $i, true);
56
+            $chunk = $chunk ^ \hash_hmac($algo, $password.$length, $i, true);
57 57
         }
58 58
 
59 59
         return \implode($chunks);
Please login to merge, or discard this patch.
src/Aes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -106,10 +106,10 @@
 block discarded – undo
106 106
         }
107 107
 
108 108
         // Create the cypher text prefix (iv + checksum)
109
-        $prefix = $ivr . self::checksum($msg, $ivr, $key, self::mode());
109
+        $prefix = $ivr.self::checksum($msg, $ivr, $key, self::mode());
110 110
 
111 111
         // Return prefix + cyphertext
112
-        return $prefix . $msg;
112
+        return $prefix.$msg;
113 113
     }
114 114
 
115 115
     /**
Please login to merge, or discard this patch.
src/Cryptobase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         }
61 61
 
62 62
         // ... then hash other elements with previous hmac and return
63
-        return \hash_hmac(self::ALGO, $sum . $iv . $mode . self::RIJNDA, $key, true);
63
+        return \hash_hmac(self::ALGO, $sum.$iv.$mode.self::RIJNDA, $key, true);
64 64
     }
65 65
 
66 66
     /**
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     protected static function key(string $password, string $iv, int $cost, string $mode): string
77 77
     {
78 78
         // Perform key derivation
79
-        return Hash::ihmac($iv . self::RIJNDA . $mode, $password, $cost, self::ALGO);
79
+        return Hash::ihmac($iv.self::RIJNDA.$mode, $password, $cost, self::ALGO);
80 80
     }
81 81
 
82 82
     /**
Please login to merge, or discard this patch.