We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cf841e commit e49ed49Copy full SHA for e49ed49
Tests/Fixtures/Serializer/NameConverter/CustomConverter.php
@@ -13,15 +13,14 @@
13
14
namespace ApiPlatform\Serializer\Tests\Fixtures\Serializer\NameConverter;
15
16
-use Symfony\Component\Serializer\NameConverter\AdvancedNameConverterInterface;
17
use Symfony\Component\Serializer\NameConverter\CamelCaseToSnakeCaseNameConverter;
18
use Symfony\Component\Serializer\NameConverter\NameConverterInterface;
19
20
/**
21
* Custom converter that will only convert a property named "nameConverted"
22
* with the same logic as Symfony\Component\Serializer\NameConverter\CamelCaseToSnakeCaseNameConverter.
23
*/
24
-class CustomConverter implements AdvancedNameConverterInterface
+class CustomConverter implements NameConverterInterface
25
{
26
private NameConverterInterface $nameConverter;
27
0 commit comments