Skip to content

Commit ab60308

Browse files
committed
2829: Fixed psalm issue
1 parent 6722994 commit ab60308

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/State/FeedSourceProcessor.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use ApiPlatform\Metadata\Operation;
1010
use ApiPlatform\Metadata\Put;
1111
use ApiPlatform\State\ProcessorInterface;
12-
use App\Dto\FeedSourceInput;
1312
use App\Entity\Interfaces\TenantScopedUserInterface;
1413
use App\Entity\Tenant\FeedSource;
1514
use App\Exceptions\UnknownFeedTypeException;
@@ -79,7 +78,7 @@ protected function fromInput(mixed $object, Operation $operation, array $uriVari
7978
/**
8079
* @throws UnknownFeedTypeException
8180
*/
82-
protected function updateFeedSourceProperties(FeedSource $feedSource, FeedSourceInput $object): void
81+
protected function updateFeedSourceProperties(FeedSource $feedSource, object $object): void
8382
{
8483
$feedSource->setTitle($object->title);
8584
$feedSource->setDescription($object->description);

0 commit comments

Comments
 (0)