Skip to content

Commit 8849cc2

Browse files
Merge branch '2.7' into 2.8
* 2.7: Remove some unused variables, properties and methods [ExpressionLanguage] Fix parse error on 5.3 [HttpKernel] remove noisy frame in controller stack traces [ExpressionLanguage] throw an SyntaxError instead of letting a undefined index notice Fix php doc in Table class bumped Symfony version to 2.7.40 updated VERSION for 2.7.39 update CONTRIBUTORS for 2.7.39 updated CHANGELOG for 2.7.39
2 parents d3e81e5 + db888ba commit 8849cc2

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)