We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47054b3 commit 8ad9555Copy full SHA for 8ad9555
Compiler/CheckCircularReferencesPass.php
@@ -26,7 +26,6 @@
26
*/
27
class CheckCircularReferencesPass implements CompilerPassInterface
28
{
29
- private $currentId;
30
private $currentPath;
31
private $checkedNodes;
32
@@ -41,7 +40,6 @@ public function process(ContainerBuilder $container)
41
40
42
$this->checkedNodes = array();
43
foreach ($graph->getNodes() as $id => $node) {
44
- $this->currentId = $id;
45
$this->currentPath = array($id);
46
47
$this->checkOutEdges($node->getOutEdges());
0 commit comments