send_email = $send_email; $this->tickets_to_return = $tickets_to_return; $this->promo_codes_to_return = $promo_codes_to_return; } /** * @return bool */ public function shouldSendEmail(): bool { return $this->send_email; } /** * @return array */ public function getTicketsToReturn(): array { return $this->tickets_to_return; } /** * @return array */ public function getPromoCodesToReturn(): array { return $this->promo_codes_to_return; } }