Skip to content

Commit cb3d540

Browse files
committed
The initial value of the query is no longer ignored in BufferedQuery's constructor.
1 parent c496216 commit cb3d540

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Utils/BufferedQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function __construct($query = '', array $options = array())
113113
$options
114114
);
115115

116-
$this->query = '';
116+
$this->query = $query;
117117
$this->setDelimiter($this->options['delimiter']);
118118
}
119119

0 commit comments

Comments
 (0)