I have my custom service, e.g.. MyService
with serializer
<?php
declare(strict_types=1);
namespace App\Common;
use Symfony\Component\Serializer\SerializerInterface;
class MyService
{
public function __construct(private readonly SerializerInterface $serializer)
{
}
}
I need to use serializer like this:
new Serializer(
normalizers: [
new ObjectNormalizer(propertyTypeExtractor: new ReflectionExtractor()),
],
encoders: [new JsonEncoder()]
);
How should i configure that via services.yaml
?
App\Common\MyService:
arguments:
$serializer: '@serializer' #????
fixed: i created new serializer component
and inject into my service...
without configs... looks like symfony style...