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