Test Failed
Pull Request — develop (#35)
by Michiel
03:39
created
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.