Skip to content

Commit

Permalink
Merge pull request #44 from designmynight/laravel-56
Browse files Browse the repository at this point in the history
Laravel 5.6
  • Loading branch information
robbytaylor authored May 25, 2018
2 parents 3bef4de + f97ea23 commit 42286d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/Config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
'elasticsearch' => [
'driver' => 'elasticsearch',
'host' => env('ELASTICSEARCH_HOST', 'localhost'),
'hosts' => env('ELASTICSEARCH_HOSTS'),
'port' => env('ELASTICSEARCH_PORT', 9200),
'database' => env('ELASTICSEARCH_DATABASE'),
'username' => env('ELASTICSEARCH_USERNAME'),
Expand Down
4 changes: 2 additions & 2 deletions src/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function raw($value)
* @param array $bindings
* @return mixed
*/
public function selectOne($query, $bindings = [])
public function selectOne($query, $bindings = [], $useReadPdo = true)
{

}
Expand All @@ -158,7 +158,7 @@ public function selectOne($query, $bindings = [])
* @param array $bindings
* @return array
*/
public function select($params, $bindings = [])
public function select($params, $bindings = [], $useReadPdo = true)
{
return $this->run(
$this->addClientParams($params),
Expand Down

0 comments on commit 42286d7

Please sign in to comment.