Skip to content

Commit db888ba

Browse files
committed
Remove some unused variables, properties and methods
1 parent f202073 commit db888ba

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Compiler/AnalyzeServiceReferencesPass.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ class AnalyzeServiceReferencesPass implements RepeatablePassInterface
3030
private $container;
3131
private $currentId;
3232
private $currentDefinition;
33-
private $repeatedPass;
3433
private $onlyConstructorArguments;
3534

3635
/**
@@ -46,7 +45,7 @@ public function __construct($onlyConstructorArguments = false)
4645
*/
4746
public function setRepeatedPass(RepeatedPass $repeatedPass)
4847
{
49-
$this->repeatedPass = $repeatedPass;
48+
// no-op for BC
5049
}
5150

5251
/**

Compiler/InlineServiceDefinitionsPass.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424
class InlineServiceDefinitionsPass implements RepeatablePassInterface
2525
{
26-
private $repeatedPass;
2726
private $graph;
2827
private $compiler;
2928
private $formatter;
@@ -34,7 +33,7 @@ class InlineServiceDefinitionsPass implements RepeatablePassInterface
3433
*/
3534
public function setRepeatedPass(RepeatedPass $repeatedPass)
3635
{
37-
$this->repeatedPass = $repeatedPass;
36+
// no-op for BC
3837
}
3938

4039
/**

0 commit comments

Comments
 (0)