Orl 短網址,供三星、福斯使用

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Console\Commands;
  3. use App\Http\Controllers\Backend\EcManagement\ProductManagementController;
  4. use Illuminate\Console\Command;
  5. class Xml extends Command
  6. {
  7. protected $signature = 'ec:xml';
  8. protected $description = 'xml generation';
  9. public function __construct()
  10. {
  11. parent::__construct();
  12. }
  13. /**
  14. * 脚本入口
  15. */
  16. public function handle()
  17. {
  18. }
  19. }