[ 'from_long' => $this->from_long, 'from' => $this->from, 'mobile' => $this->mobile, 'email' => $this->email, 'website' => $this->website, 'address' => $this->address, 'place' => $this->place, 'zip' => $this->zip, 'iban' => $this->iban, 'bic' => $this->bic, 'rememberWeeks' => $this->rememberWeeks, ] ]; } /** * @inheritdoc */ public function rules(): array { return [ 'from_long' => '', 'from' => '', 'mobile' => '', 'email' => '', 'website' => '', 'address' => '', 'place' => '', 'zip' => '', 'iban' => '', 'bic' => '', 'rememberWeeks' => '', ]; } public function beforeSave(ActionRequest $request): void { } public static function title(): string { return 'Rechnung'; } }