Skip to content

Commit 0f1cdc3

Browse files
Merge branch '2.8' into 3.3
* 2.8: 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.8.33 updated VERSION for 2.8.32 updated CHANGELOG for 2.8.32 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 b409e17 + 8849cc2 commit 0f1cdc3

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
@@ -31,7 +31,6 @@ class AnalyzeServiceReferencesPass extends AbstractRecursivePass implements Repe
3131
{
3232
private $graph;
3333
private $currentDefinition;
34-
private $repeatedPass;
3534
private $onlyConstructorArguments;
3635
private $lazy;
3736
private $expressionLanguage;
@@ -49,7 +48,7 @@ public function __construct($onlyConstructorArguments = false)
4948
*/
5049
public function setRepeatedPass(RepeatedPass $repeatedPass)
5150
{
52-
$this->repeatedPass = $repeatedPass;
51+
// no-op for BC
5352
}
5453

5554
/**

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 extends AbstractRecursivePass implements RepeatablePassInterface
2525
{
26-
private $repeatedPass;
2726
private $cloningIds = array();
2827
private $inlinedServiceIds = array();
2928

@@ -32,7 +31,7 @@ class InlineServiceDefinitionsPass extends AbstractRecursivePass implements Repe
3231
*/
3332
public function setRepeatedPass(RepeatedPass $repeatedPass)
3433
{
35-
$this->repeatedPass = $repeatedPass;
34+
// no-op for BC
3635
}
3736

3837
/**

0 commit comments

Comments
 (0)