1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use App\Models\Order;
- use App\Models\User;
- class AppUpdate extends Command
- {
-
- protected $signature = 'app:update';
-
- protected $description = '从git强制覆盖更新';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function handle()
- {
- }
-
- }
|