setType(PaymentMethodType::MOBILE_BALANCE); } /** * Возвращает номер телефона в формате ITU-T E.164. */ public function getPhone(): ?string { return $this->_phone; } /** * Устанавливает номер телефона в формате ITU-T E.164. */ public function setPhone(?string $phone): self { $this->_phone = $this->validatePropertyValue('_phone', $phone); return $this; } }