<?php namespace UCore\Commands; use Illuminate\Console\Command; class ExampleCommand extends Command { protected $signature = 'ucore:example'; protected $description = 'UCore示例命令'; public function handle() { $this->info('UCore命令执行成功'); } }