Skip to content

Commit

Permalink
Fixes #1111 [ActivityListBundle] fix const usage
Browse files Browse the repository at this point in the history
  • Loading branch information
RocKordier committed Mar 31, 2024
1 parent e7cfde4 commit 91db11f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function addActivityListsForActivityClass(
$entities = [];
}
}
if ($itemsCount % static::BATCH_SIZE > 0) {
if ($itemsCount % self::BATCH_SIZE > 0) {
$this->saveActivityLists($manager, $provider, $entities, $ownerField, $organizationField);
}
}
Expand Down

0 comments on commit 91db11f

Please sign in to comment.