Skip to content

Commit ddf138a

Browse files
Merge pull request #25094 from ntzm/revert-25092-patch-7
[5.6] Revert "Fix ConnectionInterface methods"
2 parents 26a4465 + b86f761 commit ddf138a

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)