Test Failed
Pull Request — develop (#27)
by Michiel
06:05
created
library/tiqr/Tiqr/OcraService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * @return Tiqr_OcraService_Interface
40 40
      * @throws Exception An exception if an unknown orca service type is requested.
41 41
      */
42
-    public static function getOcraService($type="tiqr", $options=array(), LoggerInterface $logger)
42
+    public static function getOcraService($type = "tiqr", $options = array(), LoggerInterface $logger)
43 43
     {
44 44
         switch ($type) {
45 45
             case "tiqr":
Please login to merge, or discard this patch.
library/tiqr/Tiqr/StateStorage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @throws RuntimeException When the options configuration array misses a required parameter
48 48
      *
49 49
      */
50
-    public static function getStorage($type="file", $options=array(), LoggerInterface $logger)
50
+    public static function getStorage($type = "file", $options = array(), LoggerInterface $logger)
51 51
     {
52 52
         switch ($type) {
53 53
             case "file":
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                     }
76 76
                 }
77 77
 
78
-                $pdoInstance = new PDO($options['dsn'],$options['username'],$options['password']);
78
+                $pdoInstance = new PDO($options['dsn'], $options['username'], $options['password']);
79 79
                 // Set a hard-coded default for the probability the expired state is removed
80 80
                 // 0.1 translates to a 10% chance the garbage collection is executed
81 81
                 $cleanupProbability = 0.1;
Please login to merge, or discard this patch.