浏览代码

测试登录

彭俊 6 年之前
父节点
当前提交
6c40f39b34
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      Biz/Account/AccountManager.php

+ 3 - 2
Biz/Account/AccountManager.php

@@ -18,10 +18,10 @@ use Biz\TokenManager;
 class AccountManager {
 
     public function __construct() {
-        dd(123);
-
         $this->model = lm('account', 'Commons');
+        echo 1;
         $this->repository = new AccountRepository();
+        echo 2;
     }
 
     /**
@@ -33,6 +33,7 @@ class AccountManager {
      */
     public function login($account, $password) {
 
+        echo 3;exit;
         $password = trim($password);
         $account = strtolower(trim($account));
         define("OVERTIME", 1800);