phoneFormat = $phoneFormat; return $this; } /** * Set the intl-tel-input options for the element. * * @see https://github.com/jackocnr/intl-tel-input * * @since 3.9.0 */ public function setIntlTelInputSettings(array $intlTelInputSettings): self { $this->intlTelInputSettings = $intlTelInputSettings; return $this; } /** * Get the phone format for the element. * * @since 3.0.0 */ public function getPhoneFormat(): string { return $this->phoneFormat; } }