1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- namespace App\Console\Commands;
- use App\Http\Models\Site;
- use App\Http\Services\TemplateLibraryApiService;
- use Illuminate\Console\Command;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Log;
- class TemplateLibrarySyncPictures extends Command
- {
-
- protected $signature = 'sync_pictures:template_library';
-
- protected $description = 'Command description';
-
- private $templateLibraryApiService;
- public function __construct(TemplateLibraryApiService $templateLibraryApiService)
- {
- parent::__construct();
- $this->templateLibraryApiService = $templateLibraryApiService;
- }
- const HOST = '121.199.40.85';
- const USER = 'root';
- const PASSWORD = 'JGJHD84@8&a';
-
- public function handle()
- {
-
- }
- }
|