From 9cd0234665ea66dff172d94b9c1b4cb61b1d25b1 Mon Sep 17 00:00:00 2001 From: Fbenas Date: Sun, 21 Jun 2020 17:58:23 +0100 Subject: Improve robustness of all scripts and add more to sync command --- app/Console/Commands/ScrapeFile.php | 31 ++----------------------------- 1 file changed, 2 insertions(+), 29 deletions(-) (limited to 'app/Console/Commands/ScrapeFile.php') diff --git a/app/Console/Commands/ScrapeFile.php b/app/Console/Commands/ScrapeFile.php index 45beda9..564cf00 100644 --- a/app/Console/Commands/ScrapeFile.php +++ b/app/Console/Commands/ScrapeFile.php @@ -9,35 +9,9 @@ use Illuminate\Support\Facades\Storage; class ScrapeFile extends Command { - /** - * The name and signature of the console command. - * - * @var string - */ protected $signature = 'scrape:file { filename }'; - - /** - * The console command description. - * - * @var string - */ protected $description = 'Scrape a file for data'; - /** - * Create a new command instance. - * - * @return void - */ - public function __construct() - { - parent::__construct(); - } - - /** - * Execute the console command. - * - * @return mixed - */ public function handle() { $filename = $this->argument('filename'); @@ -48,12 +22,11 @@ class ScrapeFile extends Command } $raw_data = Storage::disk('local')->get($filename); + $tournament_name = 'Six Nations ' . explode('-', explode('.txt', $filename)[0])[1]; - $service = new Service(new SixnationsrugbyAdapter($raw_data, 'Six Nations ' . explode('-', explode('.txt', $filename)[0])[1])); - + $service = new Service(new SixnationsrugbyAdapter($raw_data, $tournament_name)); $service->save(); return Command::SUCCESS; } - } -- cgit v1.2.3