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:
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
110107parametersSchema :
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
Original file line number Diff line number Diff 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}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11parameters :
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
You can’t perform that action at this time.
0 commit comments