Explorar o código

Add empty app:publish-scheduled-articles command

php artisan make:command PublishScheduledArticles
axkuhta hai 1 ano
pai
achega
5505905b4a
Modificáronse 1 ficheiros con 30 adicións e 0 borrados
  1. 30 0
      app/Console/Commands/PublishScheduledArticles.php

+ 30 - 0
app/Console/Commands/PublishScheduledArticles.php

@@ -0,0 +1,30 @@
+<?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()
+    {
+        //
+    }
+}