Skip to content

Commit c4be6ef

Browse files
stitecanicolas-grekas
authored andcommitted
[FrameworkBundle] Removed unused $willBeAvailable params on Configuration
1 parent e6df8bc commit c4be6ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DependencyInjection/Configuration.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ public function getConfigTreeBuilder(): TreeBuilder
143143
$this->addRequestSection($rootNode);
144144
$this->addAssetsSection($rootNode, $enableIfStandalone);
145145
$this->addTranslatorSection($rootNode, $enableIfStandalone);
146-
$this->addValidationSection($rootNode, $enableIfStandalone, $willBeAvailable);
146+
$this->addValidationSection($rootNode, $enableIfStandalone);
147147
$this->addAnnotationsSection($rootNode, $willBeAvailable);
148-
$this->addSerializerSection($rootNode, $enableIfStandalone, $willBeAvailable);
148+
$this->addSerializerSection($rootNode, $enableIfStandalone);
149149
$this->addPropertyAccessSection($rootNode, $willBeAvailable);
150150
$this->addPropertyInfoSection($rootNode, $enableIfStandalone);
151151
$this->addCacheSection($rootNode, $willBeAvailable);
@@ -848,7 +848,7 @@ private function addTranslatorSection(ArrayNodeDefinition $rootNode, callable $e
848848
;
849849
}
850850

851-
private function addValidationSection(ArrayNodeDefinition $rootNode, callable $enableIfStandalone, callable $willBeAvailable)
851+
private function addValidationSection(ArrayNodeDefinition $rootNode, callable $enableIfStandalone)
852852
{
853853
$rootNode
854854
->children()
@@ -958,7 +958,7 @@ private function addAnnotationsSection(ArrayNodeDefinition $rootNode, callable $
958958
;
959959
}
960960

961-
private function addSerializerSection(ArrayNodeDefinition $rootNode, callable $enableIfStandalone, callable $willBeAvailable)
961+
private function addSerializerSection(ArrayNodeDefinition $rootNode, callable $enableIfStandalone)
962962
{
963963
$rootNode
964964
->children()

0 commit comments

Comments
 (0)