data = $data; } /** * Execute the job. * * @return void */ public function handle() { $this->settle(); //输出信息 测试 $this->echoMessage(new ConsoleOutput()); } private function settle(){ $service = new CloudDataService(); $service->cloudData(); } protected function echoMessage(OutputInterface $output) { $output->writeln($this->data); } }