I am trying to use Serializer
Component in shopware 6
I have create a Serializer Class which I want to inject as DI in the controller.
Serializer.php
class Serializer
{
public function getSerializer(): Serializer
{
$encoder = [new JsonEncoder()];
$normalizer = [new ObjectNormalizer()];
return new Serializer($normalizer, $encoder);
}
}
MyController.php
public function __construct(Serializer $serializer)
{
$this->serializer = $serializer;
}
My problem is how to include this serializer in my services.xml
file
<service id="SwagMasterApiCoreApiMyController" public="true">
<call method="setContainer">
<argument type="service" id="service_container"/>
</call>
<service>
Can anybody help. Thanks.
question from:
https://stackoverflow.com/questions/65661656/how-to-add-serializer-in-the-services-xml-file 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…