Skip to content

Commit

Permalink
feat: configurable chunk size for conditional availability events (#241)
Browse files Browse the repository at this point in the history
- add own queue message processor plugins (`ConditionalAvailabilityQueueMessageProcessorPlugin` & `ConditionalAvailabilityRetryQueueMessageProcessorPlugin`)
- add config method for getting own event chunk size
- add required event facade per bridge
- add phpcs fixes
- ...
  • Loading branch information
daniel-rose committed Mar 19, 2024
1 parent ee22bbf commit 39a5960
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function testExpandProductPageData(): void
->method('setGroupedProductImages')
->with(
static::callback(
static fn (array $groupedProductImages): bool => array_keys($groupedProductImages) == [$key]
static fn (array $groupedProductImages): bool => array_keys($groupedProductImages) == [$key],
),
)->willReturn($this->pageSearchTransferMock);

Expand Down Expand Up @@ -147,7 +147,7 @@ public function testExpandProductPageDataWithEmptyImageSetName(): void
->method('setGroupedProductImages')
->with(
static::callback(
static fn (array $groupedProductImages): bool => array_keys($groupedProductImages) == ['*']
static fn (array $groupedProductImages): bool => array_keys($groupedProductImages) == ['*'],
),
)->willReturn($this->pageSearchTransferMock);

Expand Down Expand Up @@ -195,7 +195,7 @@ public function testExpandProductPageDataWithNullableImageSetName(): void
->method('setGroupedProductImages')
->with(
static::callback(
static fn (array $groupedProductImages): bool => array_keys($groupedProductImages) == ['*']
static fn (array $groupedProductImages): bool => array_keys($groupedProductImages) == ['*'],
),
)->willReturn($this->pageSearchTransferMock);

Expand Down

0 comments on commit 39a5960

Please sign in to comment.