diff --git a/src/Illuminate/Database/ConnectionInterface.php b/src/Illuminate/Database/ConnectionInterface.php index e395de6dd683..9262d6fdfe3e 100755 --- a/src/Illuminate/Database/ConnectionInterface.php +++ b/src/Illuminate/Database/ConnectionInterface.php @@ -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.