From 80392e2dbf099ae33bbd2d2180ce6c663e59f72a Mon Sep 17 00:00:00 2001 From: Mark Story Date: Thu, 8 Jun 2017 11:32:01 -0400 Subject: [PATCH] Fix missing newline. --- src/Database/Query.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Database/Query.php b/src/Database/Query.php index 49d9186fade..969d69083c8 100644 --- a/src/Database/Query.php +++ b/src/Database/Query.php @@ -1703,6 +1703,7 @@ public function clause($name) $clauses = implode(', ', array_keys($this->_parts)); throw new InvalidArgumentException("The '$name' clause is not defined. Valid clauses are: $clauses"); } + return $this->_parts[$name]; }