12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace App\Console\Commands;
- use App\Models\Order;
- use App\Models\User;
- use App\Utils\CacheKey;
- use App\Utils\Helper;
- use Illuminate\Console\Command;
- use Illuminate\Filesystem\Filesystem;
- use Illuminate\Foundation\Console\ConfigCacheCommand;
- use Illuminate\Support\Facades\Cache;
- use Matriphe\Larinfo;
- class Test extends Command
- {
-
- protected $signature = 'test';
-
- protected $description = '';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function handle()
- {
- }
- }
|