File tree 4 files changed +5
-14
lines changed
4 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,8 @@ parameters:
5
5
uncheckedExceptionClasses :
6
6
- 'Symfony\Component\Console\Exception\InvalidArgumentException'
7
7
symfony :
8
- container_xml_path : null
9
8
containerXmlPath : null
10
- constant_hassers : true
11
9
constantHassers : true
12
- console_application_loader : null
13
10
consoleApplicationLoader : null
14
11
featureToggles :
15
12
skipCheckGenericClasses :
@@ -109,11 +106,8 @@ parameters:
109
106
110
107
parametersSchema :
111
108
symfony : structure ([
112
- container_xml_path : schema (string (), nullable ())
113
109
containerXmlPath : schema (string (), nullable ())
114
- constant_hassers : bool ()
115
110
constantHassers : bool ()
116
- console_application_loader : schema (string (), nullable ())
117
111
consoleApplicationLoader : schema (string (), nullable ())
118
112
])
119
113
Original file line number Diff line number Diff line change @@ -18,17 +18,17 @@ public function __construct(array $parameters)
18
18
19
19
public function getContainerXmlPath (): ?string
20
20
{
21
- return $ this ->parameters ['containerXmlPath ' ] ?? $ this -> parameters [ ' container_xml_path ' ] ?? null ;
21
+ return $ this ->parameters ['containerXmlPath ' ];
22
22
}
23
23
24
24
public function hasConstantHassers (): bool
25
25
{
26
- return $ this ->parameters ['constantHassers ' ] ?? $ this -> parameters [ ' constant_hassers ' ] ?? true ;
26
+ return $ this ->parameters ['constantHassers ' ];
27
27
}
28
28
29
29
public function getConsoleApplicationLoader (): ?string
30
30
{
31
- return $ this ->parameters ['consoleApplicationLoader ' ] ?? $ this -> parameters [ ' console_application_loader ' ] ?? null ;
31
+ return $ this ->parameters ['consoleApplicationLoader ' ];
32
32
}
33
33
34
34
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
parameters :
2
2
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
You can’t perform that action at this time.
0 commit comments