diff --git a/System/Di/Service.php b/System/Di/Service.php index 58301e5b..ea241e13 100644 --- a/System/Di/Service.php +++ b/System/Di/Service.php @@ -92,7 +92,9 @@ class Service extends Component } else { $this->_definition[$id] = $definition; } - return $this->_components[$id] = Snowflake::createObject($definition); + $this->_components[$id] = Snowflake::createObject($definition); + var_dump($this->_components[$id]); + return $this->_components[$id]; } /**