1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace App\Console\Commands;
- use App\Service\CustomerPondService;
- use Illuminate\Console\Command;
- class CustomerPond extends Command
- {
- /**
- * The console command description.
- *
- * @var string
- */
- protected $signature = 'customerPond';
- protected $description = '';
- protected $process;
- protected $key = 'customerPond';
- public function __construct()
- {
- parent::__construct();
- }
- public function handle()
- {
- $service = new CustomerPondService();
- $service->updateCustomerPond();
- }
- }
|