Completed
Push — 7.x-1.x ( dff1e0...77c4eb )
by Pol
04:34
created
Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -1,12 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Symfony\Component\DependencyInjection\ContainerInterface;
4 3
 use Symfony\Component\DependencyInjection\Container;
5
-use Symfony\Component\DependencyInjection\Exception\InactiveScopeException;
6
-use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
7
-use Symfony\Component\DependencyInjection\Exception\LogicException;
8
-use Symfony\Component\DependencyInjection\Exception\RuntimeException;
9
-use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
10 4
 
11 5
 /**
12 6
  * ProjectServiceContainer.
Please login to merge, or discard this patch.
lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -1,12 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Symfony\Component\DependencyInjection\ContainerInterface;
4 3
 use Symfony\Component\DependencyInjection\Container;
5
-use Symfony\Component\DependencyInjection\Exception\InactiveScopeException;
6
-use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
7
-use Symfony\Component\DependencyInjection\Exception\LogicException;
8
-use Symfony\Component\DependencyInjection\Exception\RuntimeException;
9
-use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
10 4
 
11 5
 /**
12 6
  * ProjectServiceContainer.
Please login to merge, or discard this patch.
lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services10.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,11 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Symfony\Component\DependencyInjection\ContainerInterface;
4 3
 use Symfony\Component\DependencyInjection\Container;
5
-use Symfony\Component\DependencyInjection\Exception\InactiveScopeException;
6 4
 use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
7 5
 use Symfony\Component\DependencyInjection\Exception\LogicException;
8
-use Symfony\Component\DependencyInjection\Exception\RuntimeException;
9 6
 use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
10 7
 
11 8
 /**
Please login to merge, or discard this patch.
Component/DependencyInjection/Compiler/AnalyzeServiceReferencesPass.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -139,6 +139,11 @@
 block discarded – undo
139 139
         return null === $id ? null : $this->container->getDefinition($id);
140 140
     }
141 141
 
142
+    /**
143
+     * @param string $id
144
+     *
145
+     * @return string
146
+     */
142 147
     private function getDefinitionId($id)
143 148
     {
144 149
         while ($this->container->hasAlias($id)) {
Please login to merge, or discard this patch.