Completed
Push — master ( 07d73e...516426 )
by Davis
02:09
created
src/FeatureToggler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,12 +36,12 @@
 block discarded – undo
36 36
     {
37 37
         try {
38 38
             if ($this->config->has($key)) {
39
-                return (bool)$this->config->get($key, $defaultValue);
39
+                return (bool) $this->config->get($key, $defaultValue);
40 40
             } else {
41
-                return (bool)$defaultValue;
41
+                return (bool) $defaultValue;
42 42
             }
43 43
         } catch (Exception $e) {
44
-            return (bool)$defaultValue;
44
+            return (bool) $defaultValue;
45 45
         }
46 46
     }
47 47
 }
Please login to merge, or discard this patch.