File: /var/www/vhost/disk-apps/demo.sports-crowd.com/app/Console/Commands/Shopify.php
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Http\Controllers\ShopifyController;
class Shopify extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'sportscrowd:shopify';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Sincroniza los pedidos creados desde Shopify';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$sho = new ShopifyController();
$sho->sync();
}
}