Test Failed
Pull Request — develop (#35)
by Michiel
03:51
created
library/tiqr/Tiqr/UserSecretStorage/Encryption/Mcrypt.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     }
58 58
     
59 59
     /**
60
-      * Decrypts the given data.
60
+     * Decrypts the given data.
61 61
      *
62 62
      * @param String $data Data to decrypt.
63 63
      *
Please login to merge, or discard this patch.
library/tiqr/Tiqr/UserSecretStorage/Encryption/Dummy.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     }
58 58
     
59 59
     /**
60
-      * Decrypts the given data.
60
+     * Decrypts the given data.
61 61
      *
62 62
      * @param String $data Data to decrypt.
63 63
      *
Please login to merge, or discard this patch.
library/tiqr/Tiqr/StateStorage/File.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
     public function setValue($key, $value, $expire=0)
52 52
     {   
53 53
         $envelope = array("expire"=>$expire,
54
-                          "createdAt"=>time(),
55
-                          "value"=>$value);
54
+                            "createdAt"=>time(),
55
+                            "value"=>$value);
56 56
         $filename = $this->getFilenameByKey($key);
57 57
         
58 58
         if (!file_put_contents($filename, serialize($envelope))) {
Please login to merge, or discard this patch.