File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed
Tests/DependencyInjection Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 31
31
uses : " ramsey/composer-install@v2"
32
32
33
33
- name : " Run a static analysis with vimeo/psalm"
34
- run : " vendor/bin/psalm --show-info=false --stats --output-format=github --threads=$(nproc) -- find-unused-psalm-suppress"
34
+ run : " vendor/bin/psalm --show-info=false --stats --output-format=github --find-unused-psalm-suppress"
Original file line number Diff line number Diff line change @@ -1136,7 +1136,6 @@ private function loadMessengerServices(ContainerBuilder $container): void
1136
1136
{
1137
1137
// If the Messenger component is installed, wire it:
1138
1138
1139
- /** @psalm-suppress UndefinedClass Optional dependency */
1140
1139
if (! interface_exists (MessageBusInterface::class)) {
1141
1140
return ;
1142
1141
}
Original file line number Diff line number Diff line change @@ -988,7 +988,6 @@ public function testAnnotationsBundleMappingDetectionWithVendorNamespace(): void
988
988
989
989
public function testMessengerIntegration (): void
990
990
{
991
- /** @psalm-suppress UndefinedClass */
992
991
if (! interface_exists (MessageBusInterface::class)) {
993
992
$ this ->markTestSkipped ('Symfony Messenger component is not installed ' );
994
993
}
@@ -1014,7 +1013,6 @@ public function testMessengerIntegration(): void
1014
1013
1015
1014
public function testMessengerIntegrationWithDoctrineTransport (): void
1016
1015
{
1017
- /** @psalm-suppress UndefinedClass */
1018
1016
if (! interface_exists (MessageBusInterface::class)) {
1019
1017
$ this ->markTestSkipped ('Symfony Messenger component is not installed ' );
1020
1018
}
@@ -1046,7 +1044,6 @@ public function testMessengerIntegrationWithDoctrineTransport(): void
1046
1044
1047
1045
public function testMessengerIntegrationWithoutDoctrineTransport (): void
1048
1046
{
1049
- /** @psalm-suppress UndefinedClass */
1050
1047
if (! interface_exists (MessageBusInterface::class)) {
1051
1048
$ this ->markTestSkipped ('Symfony Messenger component is not installed ' );
1052
1049
}
You can’t perform that action at this time.
0 commit comments