whj 4 gadi atpakaļ
vecāks
revīzija
d00c94c0da
1 mainītis faili ar 42 papildinājumiem un 0 dzēšanām
  1. 42 0
      app/Console/Commands/overTimeOrder.php

+ 42 - 0
app/Console/Commands/overTimeOrder.php

xqd
@@ -0,0 +1,42 @@
+<?php
+
+namespace App\Console\Commands;
+
+use Illuminate\Console\Command;
+
+class overTimeOrder extends Command
+{
+    /**
+     * The name and signature of the console command.
+     *
+     * @var string
+     */
+    protected $signature = 'overOrder';
+
+    /**
+     * The console command description.
+     *
+     * @var string
+     */
+    protected $description = '超时';
+
+    /**
+     * Create a new command instance.
+     *
+     * @return void
+     */
+    public function __construct()
+    {
+        parent::__construct();
+    }
+
+    /**
+     * Execute the console command.
+     *
+     * @return mixed
+     */
+    public function handle()
+    {
+        echo '超时命令';
+    }
+}