Skip to content

Commit a5eb001

Browse files
committed
Try to fix CI
1 parent a455bd7 commit a5eb001

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

src/Command/IndexCommand.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ protected function execute(InputInterface $input, OutputInterface $output): int
4545
/** @var bool $runAsynchronously */
4646
$runAsynchronously = $input->getOption('run-asynchronously');
4747

48-
/** @var ChannelInterface[] $channels */
4948
$channels = $this->channelRepository->findAll();
5049
$documentTypes = $this->documentTypeProvider->getDocumentsType();
5150

src/EventSubscriber/ProductEventSubscriber.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public function onProductPostCreateOrUpdate(GenericEvent $event): void
4949
}
5050

5151
try {
52-
/** @var ChannelInterface[] $allChannels */
5352
$allChannels = $this->channelRepository->findAll();
5453
$productChannels = $product->getChannels();
5554
foreach ($allChannels as $channel) {
@@ -89,7 +88,6 @@ public function onProductPreDelete(GenericEvent $event): void
8988
}
9089

9190
try {
92-
/** @var ChannelInterface[] $allChannels */
9391
$allChannels = $this->channelRepository->findAll();
9492
foreach ($allChannels as $channel) {
9593
$channelId = $channel->getId();

src/EventSubscriber/ProductVariantSubscriber.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ public function onProductVariantPostCreateOrUpdate(GenericEvent $event): void
5454
}
5555

5656
try {
57-
/** @var ChannelInterface[] $allChannels */
5857
$allChannels = $this->channelRepository->findAll();
5958
$productChannels = $product->getChannels();
6059
foreach ($allChannels as $channel) {
@@ -98,7 +97,6 @@ public function onProductVariantPreDelete(GenericEvent $event): void
9897
}
9998

10099
try {
101-
/** @var ChannelInterface[] $allChannels */
102100
$allChannels = $this->channelRepository->findAll();
103101
foreach ($allChannels as $channel) {
104102
$channelId = $channel->getId();

0 commit comments

Comments
 (0)