PcAdminLog.php 283 B

1234567891011121314
  1. <?php
  2. namespace app\company\behavior;
  3. class PcAdminLog
  4. {
  5. public function run(&$response)
  6. {
  7. //只记录POST请求的日志
  8. if (request()->isPost() && config('pc_admin.auto_record_log')) {
  9. \app\common\model\PcAdminLog::record();
  10. }
  11. }
  12. }