Passed
Push — master ( 25c23e...3d6697 )
by Igor
02:37
created
src/Query/Query.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     private $degenerations = [];
24 24
 
25
-    private $supportFormats=[
25
+    private $supportFormats = [
26 26
         "FORMAT\\s+TSVRaw",
27 27
         "FORMAT\\s+TSVWithNamesAndTypes",
28 28
         "FORMAT\\s+TSVWithNames",
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         if (null === $this->format) {
72 72
             return false;
73 73
         }
74
-        $supportFormats = implode("|",$this->supportFormats);
74
+        $supportFormats = implode("|", $this->supportFormats);
75 75
 
76 76
         $matches = [];
77 77
         if (preg_match_all('%(' . $supportFormats . ')%ius', $this->sql, $matches)) {
Please login to merge, or discard this patch.