summaryrefslogtreecommitdiff
path: root/app/Auth/Base.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Auth/Base.php')
-rw-r--r--app/Auth/Base.php3
1 files changed, 1 insertions, 2 deletions
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];
}
}