diff --git a/System/Di/Container.php b/System/Di/Container.php index 05f345b2..fcd97634 100644 --- a/System/Di/Container.php +++ b/System/Di/Container.php @@ -143,14 +143,14 @@ class Container extends BaseObject $reflection = $this->_reflection[$class]; } - 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; - } +// 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; }