32 lines
576 B
PHP
32 lines
576 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Scraper\Edomizil;
|
|
use Illuminate\Console\Command;
|
|
|
|
class scraperCreatePropertiesJobs extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'scraper:jobs-properties';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Scrape for properties.';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle()
|
|
{
|
|
Edomizil::dispatchPropertyJobs();
|
|
}
|
|
}
|