Skip to content

Commit

Permalink
Merge pull request #25094 from ntzm/revert-25092-patch-7
Browse files Browse the repository at this point in the history
[5.6] Revert "Fix ConnectionInterface methods"
  • Loading branch information
GrahamCampbell authored Aug 5, 2018
2 parents 26a4465 + b86f761 commit ddf138a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Illuminate/Database/ConnectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,18 @@ public function raw($value);
*
* @param string $query
* @param array $bindings
* @param bool $useReadPdo
* @return mixed
*/
public function selectOne($query, $bindings = [], $useReadPdo = true);
public function selectOne($query, $bindings = []);

/**
* Run a select statement against the database.
*
* @param string $query
* @param array $bindings
* @param bool $useReadPdo
* @return array
*/
public function select($query, $bindings = [], $useReadPdo = true);
public function select($query, $bindings = []);

/**
* Run an insert statement against the database.
Expand Down

0 comments on commit ddf138a

Please sign in to comment.