Completed
Push — master ( c9aaee...04663d )
by Samuel
02:24
created
src/JsonDbStructure.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
      * @param $jsonStructureFile PathUtil | string | Array
110 110
      * @param $sqlVendor string
111 111
      */
112
-    public function __construct($jsonStructureFile, $sqlVendor='default')
112
+    public function __construct($jsonStructureFile, $sqlVendor = 'default')
113 113
     {
114 114
         if (is_array($jsonStructureFile)) {
115 115
             $this->jsonStructure = $jsonStructureFile;
Please login to merge, or discard this patch.
JsynExtractor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
         if (isset($this->sqlSyntax)) {
57 57
             $sqlSyntax = $this->sqlSyntax;
58
-            if (!isset($this->jsyn->$sqlSyntax)){
58
+            if (!isset($this->jsyn->$sqlSyntax)) {
59 59
                 $sqlSyntax = "default";
60 60
             }
61 61
             $this->jsyn = $this->jsyn->$sqlSyntax;
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             $this->jsyn = $this->jsyn->$sqlSyntax;
78 78
         }
79 79
         else {
80
-            $sqlSyntax ="default";
80
+            $sqlSyntax = "default";
81 81
             $this->jsyn = $this->jsyn->$sqlSyntax;
82 82
         }
83 83
 
Please login to merge, or discard this patch.