Completed
Pull Request — 1.1 (#15)
by David
11:22
created
src/SQLParser/Node/Parameter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,6 +211,6 @@
 block discarded – undo
211 211
      * @return bool
212 212
      */
213 213
     public function isDiscardedOnNull() {
214
-       return $this->discardedOnNull;
214
+        return $this->discardedOnNull;
215 215
     }
216 216
 }
Please login to merge, or discard this patch.
src/SQLParser/Node/LimitNode.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
         }
97 97
 
98 98
         if(is_numeric($this->value)) {
99
-           return (int) $this->value;
99
+            return (int) $this->value;
100 100
         } else if ($dbConnection != null) {
101 101
             return $dbConnection->quote($this->value);
102 102
         } else {
Please login to merge, or discard this patch.