8000 [DI] add missing type to Container::make() · symfony/symfony@02613dd · GitHub
[go: up one dir, main page]

Skip to content

Commit 02613dd

Browse files
[DI] add missing type to Container::make()
1 parent 0f24e41 commit 02613dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/DependencyInjection/Container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public function get(string $id, int $invalidBehavior = self::EXCEPTION_ON_INVALI
205205
*
206206
* As a separate method to allow "get()" to use the really fast `??` operator.
207207
*/
208-
private static function make($container, string $id, int $invalidBehavior)
208+
private static function make(self $container, string $id, int $invalidBehavior)
209209
{
210210
if (isset($container->loading[$id])) {
211211
throw new ServiceCircularReferenceException($id, array_merge(array_keys($container->loading), [$id]));

0 commit comments

Comments
 (0)
0