diff --git a/System/Di/Container.php b/System/Di/Container.php index 448eeaef..5e366941 100644 --- a/System/Di/Container.php +++ b/System/Di/Container.php @@ -145,6 +145,9 @@ class Container extends BaseObject if (!is_null($construct = $reflection->getConstructor())) { $this->_constructs[$class] = $this->resolveMethodParam($construct, $constrict); } else { + if ($class == HttpHeaders::class) { + var_dump($constrict); + } $this->_constructs[$class] = $constrict; } return $reflection;