Skip to content

Commit

Permalink
Merge pull request #38 from michal-pipa/deserializer-fix
Browse files Browse the repository at this point in the history
Corrected typo in custom handler service tag.
  • Loading branch information
schmittjoh committed Sep 28, 2011
2 parents e2b3248 + f9d1ab0 commit af0e80f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DependencyInjection/Compiler/SetCustomHandlersPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function process(ContainerBuilder $container)
}

$deserializationHandlers = array();
foreach ($container->findTaggedServiceIds('jms_serializer.deserialization_handlers') as $id => $attributes) {
foreach ($container->findTaggedServiceIds('jms_serializer.deserialization_handler') as $id => $attributes) {
$deserializationHandlers[] = new Reference($id);
}

Expand All @@ -53,4 +53,4 @@ public function process(ContainerBuilder $container)
->replaceArgument(1, $deserializationHandlers)
;
}
}
}

0 comments on commit af0e80f

Please sign in to comment.