Completed
Pull Request — master (#451)
by
unknown
18s
created
src/Traits/ModelCaching.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,9 +43,9 @@
 block discarded – undo
43 43
         $class = get_called_class();
44 44
         $instance = new $class;
45 45
 
46
-	    if (!$instance->isCachable()) {
47
-		    return parent::all($columns);
48
-	    }
46
+        if (!$instance->isCachable()) {
47
+            return parent::all($columns);
48
+        }
49 49
 
50 50
         $tags = $instance->makeCacheTags();
51 51
         $key = $instance->makeCacheKey();
Please login to merge, or discard this patch.
src/CacheKey.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         }
87 87
 
88 88
         if ($where["second"] instanceof Expression) {
89
-	    $where["second"] = $this->expressionToString($where["second"]);
89
+        $where["second"] = $this->expressionToString($where["second"]);
90 90
         }
91 91
 
92 92
         return "-{$where["boolean"]}_{$where["first"]}_{$where["operator"]}_{$where["second"]}";
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 
208 208
         $column = "";
209 209
 
210
-	if (isset($where["column"]) && $where["column"] instanceof Expression) {
210
+    if (isset($where["column"]) && $where["column"] instanceof Expression) {
211 211
             $where["column"] = $this->expressionToString($where["column"]);
212 212
         }    
213 213
 
Please login to merge, or discard this patch.