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/Auth/Base.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'app/Auth') diff --git a/app/Auth/Base.php b/app/Auth/Base.php index 9633af4f..2a3bdce0 100644 --- a/app/Auth/Base.php +++ b/app/Auth/Base.php @@ -2,7 +2,6 @@ namespace Auth; -use Core\Tool; use Pimple\Container; /** @@ -54,6 +53,6 @@ abstract class Base */ public function __get($name) { - return Tool::loadModel($this->container, $name); + return $this->container[$name]; } } -- cgit v1.2.3