UserLog.php 213 B

123456789101112131415
  1. <?php
  2. namespace app\user\behavior;
  3. class UserLog
  4. {
  5. public function run(&$params)
  6. {
  7. if (request()->isPost()) {
  8. \app\common\model\user\Log::record();
  9. }
  10. }
  11. }