File tree Expand file tree Collapse file tree 4 files changed +5
-14
lines changed
Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,8 @@ parameters:
55uncheckedExceptionClasses :
66- 'Symfony\Component\Console\Exception\InvalidArgumentException'
77symfony :
8- container_xml_path : null
98containerXmlPath : null
10- constant_hassers : true
119constantHassers : true
12- console_application_loader : null
1310consoleApplicationLoader : null
1411featureToggles :
1512skipCheckGenericClasses :
@@ -109,11 +106,8 @@ parameters:
109106
110107parametersSchema :
111108symfony : structure ([
112- container_xml_path : schema (string (), nullable ())
113109containerXmlPath : schema (string (), nullable ())
114- constant_hassers : bool ()
115110constantHassers : bool ()
116- console_application_loader : schema (string (), nullable ())
117111consoleApplicationLoader : schema (string (), nullable ())
118112])
119113
Original file line number Diff line number Diff line change @@ -18,17 +18,17 @@ public function __construct(array $parameters)
1818
1919public function getContainerXmlPath (): ?string
2020{
21- return $ this ->parameters ['containerXmlPath ' ] ?? $ this -> parameters [ ' container_xml_path ' ] ?? null ;
21+ return $ this ->parameters ['containerXmlPath ' ];
2222}
2323
2424public function hasConstantHassers (): bool
2525{
26- return $ this ->parameters ['constantHassers ' ] ?? $ this -> parameters [ ' constant_hassers ' ] ?? true ;
26+ return $ this ->parameters ['constantHassers ' ];
2727}
2828
2929public function getConsoleApplicationLoader (): ?string
3030{
31- return $ this ->parameters ['consoleApplicationLoader ' ] ?? $ this -> parameters [ ' console_application_loader ' ] ?? null ;
31+ return $ this ->parameters ['consoleApplicationLoader ' ];
3232}
3333
3434}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11parameters :
22symfony :
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