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));