forked from api-platform/core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(symfony): symfony 7.2 deprecations
- Loading branch information
Showing
5 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
* | ||
* @author Baptiste Meyer <[email protected]> | ||
*/ | ||
final class InnerFieldsNameConverter implements AdvancedNameConverterInterface | ||
final class InnerFieldsNameConverter implements NameConverterInterface, AdvancedNameConverterInterface | ||
{ | ||
public function __construct(private readonly NameConverterInterface $inner = new CamelCaseToSnakeCaseNameConverter()) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
* | ||
* @author Baptiste Meyer <[email protected]> | ||
*/ | ||
final class ReservedAttributeNameConverter implements AdvancedNameConverterInterface | ||
final class ReservedAttributeNameConverter implements NameConverterInterface, AdvancedNameConverterInterface | ||
{ | ||
public const JSON_API_RESERVED_ATTRIBUTES = [ | ||
'id' => '_id', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters