src/Resource/CustomerCreditCard.php 1 location
|
@@ 208-215 (lines=8) @@
|
| 205 |
|
* |
| 206 |
|
* @return $this |
| 207 |
|
*/ |
| 208 |
|
public function setPhone($country_code, $area_code, $number) |
| 209 |
|
{ |
| 210 |
|
$this->data->creditCard->holder->phone->countryCode = $country_code; |
| 211 |
|
$this->data->creditCard->holder->phone->areaCode = $area_code; |
| 212 |
|
$this->data->creditCard->holder->phone->number = $number; |
| 213 |
|
|
| 214 |
|
return $this; |
| 215 |
|
} |
| 216 |
|
|
| 217 |
|
/** |
| 218 |
|
* Get credit card id. |
src/Resource/Account.php 1 location
|
@@ 589-597 (lines=9) @@
|
| 586 |
|
* |
| 587 |
|
* @return \Moip\Resource\Account |
| 588 |
|
*/ |
| 589 |
|
public function setPhone($areaCode, $number, $countryCode = 55) |
| 590 |
|
{ |
| 591 |
|
$this->data->person->phone = new stdClass(); |
| 592 |
|
$this->data->person->phone->countryCode = $countryCode; |
| 593 |
|
$this->data->person->phone->areaCode = $areaCode; |
| 594 |
|
$this->data->person->phone->number = $number; |
| 595 |
|
|
| 596 |
|
return $this; |
| 597 |
|
} |
| 598 |
|
|
| 599 |
|
/** |
| 600 |
|
* Set identity document from account. |