12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- declare (strict_types = 1);
- namespace app\system\controller;
- class AuthController extends \app\BaseController
- {
-
- protected $adminInfo;
-
- protected $adminId;
-
- protected $auth = [];
-
- protected $bindModel = null;
-
- protected function initialize()
- {
- parent::initialize();
- $this->adminInfo = $this->request->adminInfo;
- event('AdminVisit', [$this->adminInfo, 'system']);
- }
- }
|