From 17dc5bdc9ede52ad618bbf326e67e3b6988170f7 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Sat, 27 Dec 2014 19:10:38 -0500 Subject: Move events handling to Symfony\EventDispatcher --- app/Console/Base.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'app/Console') diff --git a/app/Console/Base.php b/app/Console/Base.php index f955b428..5927443c 100644 --- a/app/Console/Base.php +++ b/app/Console/Base.php @@ -2,7 +2,6 @@ namespace Console; -use Core\Tool; use Pimple\Container; use Symfony\Component\Console\Command\Command; @@ -52,6 +51,6 @@ abstract class Base extends Command */ public function __get($name) { - return Tool::loadModel($this->container, $name); + return $this->container[$name]; } } -- cgit v1.2.3