From 5662c258bf1fb04bdf3b32273bc79819e75b8b33 Mon Sep 17 00:00:00 2001 From: "as2252258@163.com" Date: Tue, 23 Feb 2021 00:57:02 +0800 Subject: [PATCH] modify --- System/Di/Container.php | 1 + 1 file changed, 1 insertion(+) diff --git a/System/Di/Container.php b/System/Di/Container.php index 7cc57db6..b42cd13f 100644 --- a/System/Di/Container.php +++ b/System/Di/Container.php @@ -164,6 +164,7 @@ class Container extends BaseObject return []; } $constructs = $reflection->getConstructor(); + var_dump($constructs); if (empty($constructs) || count($constructs->getParameters()) < 1) { return [$reflection, $this->_constructs[$class] = ['class' => $class]]; }