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/TestTor.php | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'app/Console/Commands/TestTor.php') diff --git a/app/Console/Commands/TestTor.php b/app/Console/Commands/TestTor.php index 87f0050..5c4c296 100644 --- a/app/Console/Commands/TestTor.php +++ b/app/Console/Commands/TestTor.php @@ -7,43 +7,20 @@ use Illuminate\Support\Facades\Http; class TestTor extends Command { - /** - * The name and signature of the console command. - * - * @var string - */ protected $signature = 'test:tor { onion }'; - - /** - * The console command description. - * - * @var string - */ protected $description = 'Testing tor'; - /** - * Create a new command instance. - * - * @return void - */ public function __construct() { parent::__construct(); } - /** - * Execute the console command. - * - * @return mixed - */ public function handle() { $url = $this->argument('onion'); $response = Http::get($url); - dd($response->body()); - // $url = 'http://jhiwjjlqpyawmpjx.onion/'; // Note the addition of a semicolon. $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); -- cgit v1.2.3