Browse Source

Fix missing newline.

Mark Story 8 years ago
parent
commit
80392e2dbf
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/Database/Query.php

+ 1 - 0
src/Database/Query.php

@@ -1703,6 +1703,7 @@ class Query implements ExpressionInterface, IteratorAggregate
             $clauses = implode(', ', array_keys($this->_parts));
             throw new InvalidArgumentException("The '$name' clause is not defined. Valid clauses are: $clauses");
         }
+
         return $this->_parts[$name];
     }