CommunityMemberStatistics.php 624 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019-06-25
  6. * Time: 9:58
  7. */
  8. namespace App\Console\Commands;
  9. use Illuminate\Console\Command;
  10. use Illuminate\Support\Facades\Log;
  11. class CommunityMemberStatistics extends Command{
  12. /**
  13. * The name and signature of the console command.
  14. *
  15. * @var string
  16. */
  17. protected $signature = 'member:statistics';
  18. /**
  19. * The console command description.
  20. *
  21. * @var string
  22. */
  23. protected $description = '用户行为统计';
  24. public function __construct()
  25. {
  26. }
  27. //统计
  28. public function handle(){
  29. }
  30. }