Tools.php 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\timer\library;
  13. /**
  14. * 工具类
  15. * Class Tools
  16. * @package app\timer\library
  17. */
  18. class Tools
  19. {
  20. /**
  21. * 为定时任务写日志
  22. * @param string $taskKey
  23. * @param string $method
  24. * @param array $param
  25. */
  26. static function taskLogs(string $taskKey, string $method, array $param = [])
  27. {
  28. log_record(['name' => '定时任务', 'Task-Key' => $taskKey, 'method' => $method, 'param' => $param]);
  29. }
  30. }