Skip to content

Commit

Permalink
Not returning false in function that is meant to return void
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Feb 27, 2015
1 parent 4d0bbe4 commit 203ac14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ORM/Association.php
Expand Up @@ -642,7 +642,7 @@ protected function _appendFields($query, $surrogate, $options)
$autoFields = $surrogate->autoFields();

if ($query->eagerLoader()->autoFields() === false) {
return false;
return;
}

if (empty($fields) && !$autoFields) {
Expand Down

0 comments on commit 203ac14

Please sign in to comment.