Skip to content

Commit 0b6323e

Browse files
committed
Ignore Psalm findings
1 parent bad6fc8 commit 0b6323e

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

src/Twig/EventSubscriber/ProductFormComponentSubscriber.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public function onPreRender(PreRenderEvent $event): void
5050
return;
5151
}
5252

53+
/** @psalm-suppress MixedOperand */
5354
$addAutomaticRedirect->vars['attr'] += ['show' => true];
5455
}
5556
}

src/Twig/EventSubscriber/TaxonFormComponentSubscriber.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public function onPreRender(PreRenderEvent $event): void
5050
return;
5151
}
5252

53+
/** @psalm-suppress MixedOperand */
5354
$addAutomaticRedirect->vars['attr'] += ['show' => true];
5455
}
5556
}

src/Validator/Constraints/InfiniteLoopValidator.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
use Symfony\Component\Validator\ConstraintValidator;
1414
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
1515

16+
/** @psalm-suppress PropertyNotSetInConstructor */
1617
final class InfiniteLoopValidator extends ConstraintValidator
1718
{
1819
private ChannelRepositoryInterface $channelRepository;

src/Validator/Constraints/SourceRegexValidator.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
use Symfony\Component\Validator\Constraints\RegexValidator;
99
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
1010

11+
/** @psalm-suppress PropertyNotSetInConstructor */
1112
final class SourceRegexValidator extends RegexValidator
1213
{
1314
private string $pattern;

src/Validator/Constraints/SourceValidator.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
use Symfony\Component\Validator\ConstraintValidator;
1111
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
1212

13+
/** @psalm-suppress PropertyNotSetInConstructor */
1314
final class SourceValidator extends ConstraintValidator
1415
{
1516
private RedirectRepositoryInterface $redirectRepository;

0 commit comments

Comments
 (0)