start_date = date('Y-m-d', strtotime($start_date)); $this->end_date = date("Y-m-d", strtotime($end_date)); $this->type = $type; } public function sheets(): array { if ($this->type) { if ($this->type == "mp") { $sheets = [ //福恋用户 new LoveActiveUser($this->start_date,$this->end_date), ]; }else { $sheets = [ //Saas用户 new SaasActiveUser($this->start_date, $this->end_date), ]; } }else { $sheets = [ //福恋用户 new LoveActiveUser($this->start_date,$this->end_date), //Saas用户 new SaasActiveUser($this->start_date, $this->end_date), ]; } return $sheets; } }