Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/DatabaseDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ public function execute()
$this->count++;

// Get list of bound parameters
$bounded =& $this->sql->getBounded();
$bounded = $this->sql->getBounded();

// If there is a monitor registered, let it know we are starting this query
if ($this->monitor) {
Expand Down
2 changes: 1 addition & 1 deletion src/DatabaseQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -2049,7 +2049,7 @@ public function __clone()
*
* @since 1.5.0
*/
public function &getBounded($key = null)
public function getBounded($key = null)
{
if (empty($key)) {
return $this->bounded;
Expand Down
2 changes: 1 addition & 1 deletion src/Pdo/PdoDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ public function execute()
$this->count++;

// Get list of bounded parameters
$bounded =& $this->sql->getBounded();
$bounded = $this->sql->getBounded();

// If there is a monitor registered, let it know we are starting this query
if ($this->monitor) {
Expand Down
2 changes: 1 addition & 1 deletion src/Query/PreparableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ public function unbind($key);
*
* @since 1.0
*/
public function &getBounded($key = null);
public function getBounded($key = null);
}
2 changes: 1 addition & 1 deletion src/Sqlsrv/SqlsrvDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ public function execute()
$this->count++;

// Get list of bounded parameters
$bounded =& $this->sql->getBounded();
$bounded = $this->sql->getBounded();

// If there is a monitor registered, let it know we are starting this query
if ($this->monitor) {
Expand Down