Skip to content

Commit

Permalink
Remove reference from the signature.
Browse files Browse the repository at this point in the history
  • Loading branch information
bar committed Nov 12, 2013
1 parent cb42b05 commit 6b8a79b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/Cake/Model/Datasource/DboSource.php
Expand Up @@ -1542,11 +1542,14 @@ public function prepareFields(Model $Model, $queryData) {
/**
* Builds an SQL statement.
*
* This is merely a convenient wrapper to DboSource::buildStatement().
*
* @param Model $Model
* @param array $queryData
* @return string String containing an SQL statement.
* @see DboSource::buildStatement()
*/
public function buildAssociationQuery(Model $Model, &$queryData) {
public function buildAssociationQuery(Model $Model, $queryData) {
$queryData = $this->_scrubQueryData($queryData);

return $this->buildStatement(
Expand Down

0 comments on commit 6b8a79b

Please sign in to comment.