Completed
Push — master ( e2d62f...7c6f20 )
by Alexander
02:43
created
src/Filter/Filter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,18 +75,18 @@
 block discarded – undo
75 75
 
76 76
         // If both are a scalar ...
77 77
         if ($this->isScalar($filterValue) && $this->isScalar($entryValue)) {
78
-            Logger::log("query:" . $filterValue . " and entry:" . $entryValue . " are both scalars.\n");
78
+            Logger::log("query:".$filterValue." and entry:".$entryValue." are both scalars.\n");
79 79
             $isMatch = $filterValue === $entryValue;
80 80
         }
81 81
         // If both are a list ...
82 82
         if ($this->isList($filterValue) && $this->isList($entryValue)) {
83
-            Logger::log("query:" . json_encode($filterValue) . " and entry:" . json_encode($entryValue) . " are both lists.\n");
83
+            Logger::log("query:".json_encode($filterValue)." and entry:".json_encode($entryValue)." are both lists.\n");
84 84
             $isMatch = $filterValue === $entryValue;
85 85
         }
86 86
 
87 87
         // If both are a document ...
88 88
         if ($this->isDocument($filterValue) && $this->isDocument($entryValue)) {
89
-            Logger::log("query:" . json_encode($filterValue) . " and entry:" . json_encode($entryValue) . " are both documents.\n");
89
+            Logger::log("query:".json_encode($filterValue)." and entry:".json_encode($entryValue)." are both documents.\n");
90 90
 
91 91
             // If filter is an operator ...
92 92
             if ($this->isOperator($filterValue)) {
Please login to merge, or discard this patch.