Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 568a79d

Browse filesBrowse files
Merge branch '6.0' into 6.1
* 6.0: Fix merge
2 parents 266dd46 + c1311c6 commit 568a79d
Copy full SHA for 568a79d

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎.github/expected-missing-return-types.diff

Copy file name to clipboardExpand all lines: .github/expected-missing-return-types.diff
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ index b9dd838898..3a8cb63eac 100644
280280
* @throws InvalidArgumentException if the parameter is not defined
281281
*/
282282
- 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
284284
{
285285
return $this->parameterBag->get($name);
286286
diff --git a/src/Symfony/Component/DependencyInjection/ContainerInterface.php b/src/Symfony/Component/DependencyInjection/ContainerInterface.php
@@ -291,7 +291,7 @@ index aa5d6b317e..31ffbca4ef 100644
291291
* @throws InvalidArgumentException if the parameter is not defined
292292
*/
293293
- 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;
295295

296296
public function hasParameter(string $name): bool;
297297
diff --git a/src/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php b/src/Symfony/Component/DependencyInjection/Extension/ConfigurationExtensionInterface.php

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.