ConsultancyProject1_Auslast.../app/Console/Commands/scraperCreatePropertiesJobs...

32 lines
576 B
PHP
Raw Normal View History

2024-07-06 19:50:03 +02:00
<?php
namespace App\Console\Commands;
use App\Scraper\Edomizil;
use Illuminate\Console\Command;
2024-07-15 16:33:52 +02:00
class scraperCreatePropertiesJobs extends Command
2024-07-06 19:50:03 +02:00
{
/**
* The name and signature of the console command.
*
* @var string
*/
2024-07-15 16:33:52 +02:00
protected $signature = 'scraper:jobs-properties';
2024-07-06 19:50:03 +02:00
/**
* The console command description.
*
* @var string
*/
2024-07-15 16:33:52 +02:00
protected $description = 'Scrape for properties.';
2024-07-06 19:50:03 +02:00
/**
* Execute the console command.
*/
public function handle()
{
2024-07-15 16:33:52 +02:00
Edomizil::dispatchPropertyJobs();
2024-07-06 19:50:03 +02:00
}
}