Skip to content

Commit

Permalink
Merge branch '7.1' into 7.2
Browse files Browse the repository at this point in the history
* 7.1:
  Update messenger.rst
  • Loading branch information
javiereguiluz committed Jun 12, 2024
2 parents 41f855e + c51f88c commit 1444df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion messenger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2587,7 +2587,7 @@ provided in order to ease the declaration of these special handlers::
// of the trait to define your own batch size...
private function shouldFlush(): bool
{
return 100 <= \count($this->jobs);
return $this->getBatchSize() <= \count($this->jobs);
}

// ... or redefine the `getBatchSize()` method if the default
Expand Down

0 comments on commit 1444df8

Please sign in to comment.