ConsultancyProject1_Auslast.../scraper/app/Console/Commands/scrapePropertyDate.php

31 lines
527 B
PHP
Raw Normal View History

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class scrapePropertyDate extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'scrape:propertydata';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Scrapes for property data from properties.';
/**
* Execute the console command.
*/
public function handle()
{
//
}
}