1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Console\Commands\ContentManage;
- use http\Exception\RuntimeException;
- use Illuminate\Console\Command;
- use Illuminate\Support\Facades\Redis;
- use Modules\Common\Errors\Errors;
- use Modules\Common\Exceptions\CommonBusinessException;
- class ContentTest extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'app:contenttest';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Command description';
- /**
- * Execute the console command.
- */
- public function handle(): void
- {
- myLog('kkkkk')->info(date('Y-m-d H:i:s'));
- throw new RuntimeException('kljkjljkjkl');
- }
- }
|