diff --git a/src/Service.php b/src/Service.php index ed31111..b789669 100644 --- a/src/Service.php +++ b/src/Service.php @@ -7,7 +7,7 @@ * input and output processing * @package Core */ -class Service { +class Service extends Service\ServiceContainer { /** * Contains the object of instantiation of the Service class * @static @@ -47,12 +47,4 @@ private function prepare(){ $this->$varName = new $className; } } - - /** - * Dump function - */ - public function dump(){ - return($this); - } - -} \ No newline at end of file +} diff --git a/src/Service/ServiceContainer.php b/src/Service/ServiceContainer.php new file mode 100644 index 0000000..dff5cae --- /dev/null +++ b/src/Service/ServiceContainer.php @@ -0,0 +1,21 @@ +