Removed useless argument $definition

This commit is contained in:
Yonel Ceruto 2017-08-01 10:05:24 -04:00
parent 468b44a031
commit 81396c7fac

View File

@ -16,7 +16,6 @@ use Symfony\Component\DependencyInjection\Compiler\PriorityTaggedServiceTrait;
use Symfony\Component\DependencyInjection\Compiler\ServiceLocatorTagPass; use Symfony\Component\DependencyInjection\Compiler\ServiceLocatorTagPass;
use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException; use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
use Symfony\Component\DependencyInjection\Reference; use Symfony\Component\DependencyInjection\Reference;
@ -53,12 +52,12 @@ class FormPass implements CompilerPassInterface
if (new IteratorArgument(array()) != $definition->getArgument(2)) { if (new IteratorArgument(array()) != $definition->getArgument(2)) {
return; return;
} }
$definition->replaceArgument(0, $this->processFormTypes($container, $definition)); $definition->replaceArgument(0, $this->processFormTypes($container));
$definition->replaceArgument(1, $this->processFormTypeExtensions($container)); $definition->replaceArgument(1, $this->processFormTypeExtensions($container));
$definition->replaceArgument(2, $this->processFormTypeGuessers($container)); $definition->replaceArgument(2, $this->processFormTypeGuessers($container));
} }
private function processFormTypes(ContainerBuilder $container, Definition $definition) private function processFormTypes(ContainerBuilder $container)
{ {
// Get service locator argument // Get service locator argument
$servicesMap = array(); $servicesMap = array();