Mercurial > hg > cmmr2012-drupal-site
diff vendor/symfony/translation/DependencyInjection/TranslationExtractorPass.php @ 4:a9cd425dd02b
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:11:55 +0000 |
parents | c75dbcec494b |
children |
line wrap: on
line diff
--- a/vendor/symfony/translation/DependencyInjection/TranslationExtractorPass.php Thu Feb 28 11:14:44 2019 +0000 +++ b/vendor/symfony/translation/DependencyInjection/TranslationExtractorPass.php Thu Feb 28 13:11:55 2019 +0000 @@ -11,10 +11,10 @@ namespace Symfony\Component\Translation\DependencyInjection; +use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; +use Symfony\Component\DependencyInjection\ContainerBuilder; +use Symfony\Component\DependencyInjection\Exception\RuntimeException; use Symfony\Component\DependencyInjection\Reference; -use Symfony\Component\DependencyInjection\ContainerBuilder; -use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; -use Symfony\Component\DependencyInjection\Exception\RuntimeException; /** * Adds tagged translation.extractor services to translation extractor. @@ -43,7 +43,7 @@ throw new RuntimeException(sprintf('The alias for the tag "translation.extractor" of service "%s" must be set.', $id)); } - $definition->addMethodCall('addExtractor', array($attributes[0]['alias'], new Reference($id))); + $definition->addMethodCall('addExtractor', [$attributes[0]['alias'], new Reference($id)]); } } }