Completed
Push — master ( cb4efe...70fe89 )
by Moviet
23:06 queued 13:06
created
src/Hash/Suitin.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -3,17 +3,17 @@
 block discarded – undo
3 3
 
4 4
 interface Suitin
5 5
 {
6
-	public function cost($cost);
6
+    public function cost($cost);
7 7
 
8
-	public function memory($memory);
8
+    public function memory($memory);
9 9
 
10
-	public function time($time);
10
+    public function time($time);
11 11
 
12
-	public function thread($thread);
12
+    public function thread($thread);
13 13
 
14
-	public function pwHash($mode, $password);
14
+    public function pwHash($mode, $password);
15 15
 
16
-	public function pwRehash($mode, $password, $hash);
16
+    public function pwRehash($mode, $password, $hash);
17 17
 
18
-	public function pwInfo($hash);
18
+    public function pwInfo($hash);
19 19
 }
Please login to merge, or discard this patch.
src/Crypsic.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@
 block discarded – undo
39 39
     protected static $auth;
40 40
 
41 41
     /**
42
-    * @param string hash
43
-    */
42
+     * @param string hash
43
+     */
44 44
     protected static $hash;
45 45
 
46 46
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -356,7 +356,7 @@
 block discarded – undo
356 356
      */
357 357
     protected static function calcKey()
358 358
     {
359
-        return preg_replace('/[^0-9]/','', self::getMode());
359
+        return preg_replace('/[^0-9]/', '', self::getMode());
360 360
     }
361 361
 
362 362
     /**
Please login to merge, or discard this patch.