| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace App\Console\Commands;
- use App\Module\Farm\Services\CropService;
- use Illuminate\Console\Command;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Log;
- use UCore\Helper\Logger;
- class TestDemo extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'test:demo';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = '测试一些';
- /**
- * Execute the console command.
- */
- public function handle()
- {
- Logger::error('eee',[11]);
- return 1;
- }
- }
|