Skip to content

Commit 22e8cd9

Browse files
author
Sine Jespersen
committed
2314: lint broke psalm, readd psalm
1 parent 2daf652 commit 22e8cd9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/State/ScreenProcessor.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ protected function fromInput(mixed $object, Operation $operation, array $uriVari
9292
$newPlaylistScreenRegionRelation->setRegion($region);
9393
$newPlaylistScreenRegionRelation->setScreen($screen);
9494
$newPlaylistScreenRegionRelation->setWeight($inputPlaylist['weight'] ?? 0);
95-
/* @psalm-suppress InvalidArgument */
95+
/** @psalm-suppress InvalidArgument */
9696
$playlistScreenRegionCollection->add($newPlaylistScreenRegionRelation);
9797
} else {
9898
// Update weight, add existing relation
9999
$existingPlaylistScreenRegion->setWeight($inputPlaylist['weight'] ?? 0);
100-
/* @psalm-suppress InvalidArgument */
100+
/** @psalm-suppress InvalidArgument */
101101
$playlistScreenRegionCollection->add($existingPlaylistScreenRegion);
102102
}
103103
}
@@ -113,7 +113,7 @@ protected function fromInput(mixed $object, Operation $operation, array $uriVari
113113
if (is_null($groupToSave)) {
114114
throw new InvalidArgumentException('Unknown screen group resource');
115115
}
116-
/* @psalm-suppress InvalidArgument */
116+
/** @psalm-suppress InvalidArgument */
117117
$groupCollection->add($groupToSave);
118118
}
119119
$screen->setScreenGroups($groupCollection);

0 commit comments

Comments
 (0)