CustomerPond.php 582 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace App\Console\Commands;
  3. use App\Service\CustomerPondService;
  4. use Illuminate\Console\Command;
  5. class CustomerPond extends Command
  6. {
  7. /**
  8. * The console command description.
  9. *
  10. * @var string
  11. */
  12. protected $signature = 'customerPond';
  13. protected $description = '';
  14. protected $process;
  15. protected $key = 'customerPond';
  16. public function __construct()
  17. {
  18. parent::__construct();
  19. }
  20. public function handle()
  21. {
  22. $service = new CustomerPondService();
  23. $service->updateCustomerPond();
  24. }
  25. }