Skip to content

Commit 7e5633f

Browse files
committed
[BCB] Remove legacy config options with _ in their name
1 parent 4f260f0 commit 7e5633f

File tree

4 files changed

+5
-14
lines changed

4 files changed

+5
-14
lines changed

extension.neon

-6
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,8 @@ parameters:
55
uncheckedExceptionClasses:
66
- 'Symfony\Component\Console\Exception\InvalidArgumentException'
77
symfony:
8-
container_xml_path: null
98
containerXmlPath: null
10-
constant_hassers: true
119
constantHassers: true
12-
console_application_loader: null
1310
consoleApplicationLoader: null
1411
featureToggles:
1512
skipCheckGenericClasses:
@@ -109,11 +106,8 @@ parameters:
109106

110107
parametersSchema:
111108
symfony: structure([
112-
container_xml_path: schema(string(), nullable())
113109
containerXmlPath: schema(string(), nullable())
114-
constant_hassers: bool()
115110
constantHassers: bool()
116-
console_application_loader: schema(string(), nullable())
117111
consoleApplicationLoader: schema(string(), nullable())
118112
])
119113

src/Symfony/Configuration.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ public function __construct(array $parameters)
1818

1919
public function getContainerXmlPath(): ?string
2020
{
21-
return $this->parameters['containerXmlPath'] ?? $this->parameters['container_xml_path'] ?? null;
21+
return $this->parameters['containerXmlPath'];
2222
}
2323

2424
public function hasConstantHassers(): bool
2525
{
26-
return $this->parameters['constantHassers'] ?? $this->parameters['constant_hassers'] ?? true;
26+
return $this->parameters['constantHassers'];
2727
}
2828

2929
public function getConsoleApplicationLoader(): ?string
3030
{
31-
return $this->parameters['consoleApplicationLoader'] ?? $this->parameters['console_application_loader'] ?? null;
31+
return $this->parameters['consoleApplicationLoader'];
3232
}
3333

3434
}

tests/Symfony/config.neon

-3
This file was deleted.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
parameters:
22
symfony:
3-
console_application_loader: console_application_loader.php
4-
container_xml_path: container.xml
3+
consoleApplicationLoader: console_application_loader.php
4+
containerXmlPath: container.xml

0 commit comments

Comments
 (0)