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