Skip to content

Commit

Permalink
fixes mootensai#47
Browse files Browse the repository at this point in the history
  • Loading branch information
mootensai committed Oct 4, 2017
1 parent 65e4823 commit f8b4147
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions RelationTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function loadAll($POST, $skippedRelations = [])
continue;
}

return $this->loadToRelation($isHasMany, $relName, $relAttr);
$this->loadToRelation($isHasMany, $relName, $relAttr);
}
}
} else {
Expand All @@ -81,10 +81,11 @@ public function loadAll($POST, $skippedRelations = [])
continue;
}

return $this->loadToRelation($isHasMany, $relName, $attr);
$this->loadToRelation($isHasMany, $relName, $attr);
}
}
}
return true;
}
return false;
}
Expand Down

0 comments on commit f8b4147

Please sign in to comment.