123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- class PublishScheduledArticles extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'app:publish-scheduled-articles';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Command description';
- /**
- * Execute the console command.
- */
- public function handle()
- {
- //
- }
- }
|