File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,16 @@ final class MarshallerPass implements CompilerPassInterface
12
12
{
13
13
use PriorityTaggedServiceTrait;
14
14
15
- // TODO fixme
16
-
17
15
public function process (ContainerBuilder $ container ): void
18
16
{
19
17
if (!$ container ->hasDefinition ('marshaller ' )) {
20
18
return ;
21
19
}
22
20
23
- // TODO fixme
24
-
25
21
$ marshallerDefinition = $ container ->getDefinition ('marshaller ' );
26
- $ marshallerDefinition ->replaceArgument (1 , $ this ->findAndSortTaggedServices ('marshaller.context.context_builder.marshal_generate ' , $ container ));
22
+
23
+ $ marshallerDefinition ->replaceArgument (1 , $ this ->findAndSortTaggedServices ('marshaller.context.builder.marshal ' , $ container ));
24
+ $ marshallerDefinition ->replaceArgument (2 , $ this ->findAndSortTaggedServices ('marshaller.context.builder.generation ' , $ container ));
25
+ $ marshallerDefinition ->replaceArgument (3 , $ this ->findAndSortTaggedServices ('marshaller.context.builder.unmarshal ' , $ container ));
27
26
}
28
27
}
You can’t perform that action at this time.
0 commit comments