From 5fa5646024da98293889614dac41037b26e2cbaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Fri, 11 Jul 2025 15:11:27 +0800 Subject: [PATCH] eee --- Container.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Container.php b/Container.php index 8ba4c76..927a122 100644 --- a/Container.php +++ b/Container.php @@ -169,6 +169,8 @@ class Container implements ContainerInterface if (($handler = $reflect->getConstructor()) !== null) { $construct = $this->mergeParams($this->getMethodParams($handler), $construct); } + + var_dump($construct); $newInstance = $reflect->newInstanceArgs($construct); return $this->runInit($reflect, static::configure($newInstance, $config));