From bc8b033c54f4ba6e9b7682c9a6ddf906bea96f23 Mon Sep 17 00:00:00 2001 From: Juan Cristobal <65052633+juancristobalgd1@users.noreply.github.com> Date: Thu, 28 Mar 2024 01:05:17 +0100 Subject: [PATCH] update file --- src/App.php | 2 +- src/Container.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.php b/src/App.php index d0c3898..2accbe5 100644 --- a/src/App.php +++ b/src/App.php @@ -272,7 +272,7 @@ public function user(string $value = null) */ public function removeService(string $alias): void { - return $this->remove($alias); + $this->remove($alias); } /** diff --git a/src/Container.php b/src/Container.php index 43b1582..2f8357e 100644 --- a/src/Container.php +++ b/src/Container.php @@ -13,7 +13,7 @@ class Container { private array $storage = []; - private ?Container $instances = []; + private $instances = []; public static function getInstance() {