Skip to content

Commit

Permalink
Move job config options param from runQuery to query method
Browse files Browse the repository at this point in the history
  • Loading branch information
Lymelight committed Aug 16, 2018
1 parent d1d3fc1 commit 54033f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Big.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function run($query, $options = null)
// Set default options if nothing is passed in
$options = $options ?? $this->options;

$queryResults = $this->query->runQuery($this->query->query($query), $options);
$queryResults = $this->query->runQuery($this->query->query($query, $options));

// Setup our result checks
$isComplete = $queryResults->isComplete();
Expand Down

0 comments on commit 54033f9

Please sign in to comment.