Skip to content

Commit b86f761

Browse files
authored
Revert "Fix ConnectionInterface methods (#25092)"
This reverts commit 7a5b58b.
1 parent 7a5b58b commit b86f761

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Illuminate/Database/ConnectionInterface.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,18 @@ public function raw($value);
2727
*
2828
* @param string $query
2929
* @param array $bindings
30-
* @param bool $useReadPdo
3130
* @return mixed
3231
*/
33-
public function selectOne($query, $bindings = [], $useReadPdo = true);
32+
public function selectOne($query, $bindings = []);
3433

3534
/**
3635
* Run a select statement against the database.
3736
*
3837
* @param string $query
3938
* @param array $bindings
40-
* @param bool $useReadPdo
4139
* @return array
4240
*/
43-
public function select($query, $bindings = [], $useReadPdo = true);
41+
public function select($query, $bindings = []);
4442

4543
/**
4644
* Run an insert statement against the database.

0 commit comments

Comments
 (0)