We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26a4465 + b86f761 commit ddf138aCopy full SHA for ddf138a
src/Illuminate/Database/ConnectionInterface.php
@@ -27,20 +27,18 @@ public function raw($value);
27
*
28
* @param string $query
29
* @param array $bindings
30
- * @param bool $useReadPdo
31
* @return mixed
32
*/
33
- public function selectOne($query, $bindings = [], $useReadPdo = true);
+ public function selectOne($query, $bindings = []);
34
35
/**
36
* Run a select statement against the database.
37
38
39
40
41
* @return array
42
43
- public function select($query, $bindings = [], $useReadPdo = true);
+ public function select($query, $bindings = []);
44
45
46
* Run an insert statement against the database.
0 commit comments