File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ index b9dd838898..3a8cb63eac 100644
280
280
* @throws InvalidArgumentException if the parameter is not defined
281
281
*/
282
282
- public function getParameter(string $name)
283
- + public function getParameter(string $name): array|bool|string|int|float|null
283
+ + public function getParameter(string $name): array|bool|string|int|float|\UnitEnum| null
284
284
{
285
285
return $this->parameterBag->get($name);
286
286
diff --git a/src/Symfony/Component/DependencyInjection/ContainerInterface.php b/src/Symfony/Component/DependencyInjection/ContainerInterface.php
@@ -291,7 +291,7 @@ index aa5d6b317e..31ffbca4ef 100644
291
291
* @throws InvalidArgumentException if the parameter is not defined
292
292
*/
293
293
- public function getParameter(string $name);
294
- + public function getParameter(string $name): array|bool|string|int|float|null;
294
+ + public function getParameter(string $name): array|bool|string|int|float|\UnitEnum| null;
295
295
296
296
public function hasParameter(string $name): bool;
297
297
diff --git a/src/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php b/src/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php
You can’t perform that action at this time.
0 commit comments