Skip to content

Commit 9b30ee4

Browse files
chore: update api-platform/core
1 parent 22332ba commit 9b30ee4

File tree

7 files changed

+13
-12
lines changed

7 files changed

+13
-12
lines changed

api/composer.lock

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/src/State/Processor/BookPersistProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Symfony\Contracts\HttpClient\HttpClientInterface;
1515

1616
/**
17-
* @implements ProcessorInterface<Book>
17+
* @implements ProcessorInterface<Book, Book>
1818
*/
1919
final readonly class BookPersistProcessor implements ProcessorInterface
2020
{

api/src/State/Processor/BookRemoveProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Symfony\Component\DependencyInjection\Attribute\Autowire;
1515

1616
/**
17-
* @implements ProcessorInterface<void>
17+
* @implements ProcessorInterface<Book, void>
1818
*/
1919
final readonly class BookRemoveProcessor implements ProcessorInterface
2020
{

api/src/State/Processor/BookmarkPersistProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Symfony\Component\DependencyInjection\Attribute\Autowire;
1414

1515
/**
16-
* @implements ProcessorInterface<Bookmark>
16+
* @implements ProcessorInterface<Bookmark, Bookmark>
1717
*/
1818
final readonly class BookmarkPersistProcessor implements ProcessorInterface
1919
{

api/src/State/Processor/MercureProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use Symfony\Component\Serializer\SerializerInterface;
1919

2020
/**
21-
* @implements ProcessorInterface<object>
21+
* @implements ProcessorInterface<object, object>
2222
*/
2323
final readonly class MercureProcessor implements ProcessorInterface
2424
{

api/src/State/Processor/ReviewPersistProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Symfony\Component\DependencyInjection\Attribute\Autowire;
1515

1616
/**
17-
* @implements ProcessorInterface<Review>
17+
* @implements ProcessorInterface<Review, Review>
1818
*/
1919
final readonly class ReviewPersistProcessor implements ProcessorInterface
2020
{

api/src/State/Processor/ReviewRemoveProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Symfony\Component\DependencyInjection\Attribute\Autowire;
1515

1616
/**
17-
* @implements ProcessorInterface<void>
17+
* @implements ProcessorInterface<Review, void>
1818
*/
1919
final readonly class ReviewRemoveProcessor implements ProcessorInterface
2020
{

0 commit comments

Comments
 (0)