Completed
Push — master ( b5ceee...f69b09 )
by Marco
05:46
created
src/Comodojo/Dispatcher/Cache/ServerCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         Response $response
70 70
     ) {
71 71
 
72
-        if ($this->bypass === true) {
72
+        if ( $this->bypass === true ) {
73 73
             return false;
74 74
         }
75 75
 
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             ->setNamespace(self::$cache_namespace)
79 79
             ->get($name);
80 80
 
81
-        if (is_null($cache_object)) {
81
+        if ( is_null($cache_object) ) {
82 82
             return false;
83 83
         }
84 84
 
Please login to merge, or discard this patch.
src/Comodojo/Dispatcher/Cache/RouterCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * @return int $ttl
57 57
      * @return bool
58 58
      */
59
-    public function dump($data, $ttl=null) {
59
+    public function dump($data, $ttl = null) {
60 60
 
61 61
         return $this->getCache()
62 62
             ->setNamespace(self::CACHE_NAMESPACE)
Please login to merge, or discard this patch.