Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aggregate multiple columns behavior & parameter list support #1702

Merged
Merged
Changes from 1 commit
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
Prev Previous commit
added return types to test
  • Loading branch information
mringler committed Mar 4, 2021
commit f076d5058e2f11ea576c390265ae1abd041be14c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ private function insertScoreGroup(): AggregateMultipleScoreGroup
*
* @return \Propel\Tests\Bookstore\Behavior\AggregateMultipleScore
*/
private function insertScore(AggregateMultipleScoreGroup $group, int $scoreValue, $date = null)
private function insertScore(AggregateMultipleScoreGroup $group, int $scoreValue, $date = null): AggregateMultipleScore
{
$score = new AggregateMultipleScore();
$score->setAggregateMultipleScoreGroup($group)->setScore($scoreValue)->setScoredAt($date)->save($this->con);
Expand Down