@@ -62,13 +62,13 @@ discard block |
||
| 62 | 62 | * Add a new address to the account. |
| 63 | 63 | * |
| 64 | 64 | * @param string $street Street address. |
| 65 | - * @param string $number_format(number) Number address. |
|
| 66 | 65 | * @param string $district Neighborhood address. |
| 67 | 66 | * @param string $city City address. |
| 68 | 67 | * @param string $state State address. |
| 69 | 68 | * @param string $zip The zip code billing address. |
| 70 | 69 | * @param string $complement Address complement. |
| 71 | 70 | * @param string $country Country ISO-alpha3 format, BRA example. |
| 71 | + * @param string $number |
|
| 72 | 72 | * |
| 73 | 73 | * @return $this |
| 74 | 74 | */ |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | * |
| 109 | 109 | * @param string $moip_id |
| 110 | 110 | * |
| 111 | - * @return \Moip\Resource\Account |
|
| 111 | + * @return stdClass |
|
| 112 | 112 | */ |
| 113 | 113 | public function get($moip_id) |
| 114 | 114 | { |
@@ -433,8 +433,8 @@ discard block |
||
| 433 | 433 | /** |
| 434 | 434 | * Set name from account. |
| 435 | 435 | * |
| 436 | - * @param string $name Account's person name. |
|
| 437 | 436 | * |
| 437 | + * @param string $lastname |
|
| 438 | 438 | * @return \Moip\Resource\Account |
| 439 | 439 | */ |
| 440 | 440 | public function setLastName($lastname) |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | /** |
| 448 | 448 | * Set birth date from account. |
| 449 | 449 | * |
| 450 | - * @param \DateTime|string $birthDate Date of birth of the credit card holder. |
|
| 450 | + * @param string $birthDate Date of birth of the credit card holder. |
|
| 451 | 451 | * |
| 452 | 452 | * @return \Moip\Resource\Account |
| 453 | 453 | */ |
@@ -503,8 +503,8 @@ discard block |
||
| 503 | 503 | * |
| 504 | 504 | * @param string $number Número do documento. |
| 505 | 505 | * @param string $issuer Emissor do documento. |
| 506 | - * @param \DateTime|string $birthDate $issueDate Data de emissão do documento. |
|
| 507 | 506 | * @param string $type Tipo do documento. Valores possíveis: RG. |
| 507 | + * @param string $issueDate |
|
| 508 | 508 | * |
| 509 | 509 | * @return \Moip\Resource\Account |
| 510 | 510 | */ |
@@ -439,9 +439,9 @@ |
||
| 439 | 439 | */ |
| 440 | 440 | public function setLastName($lastname) |
| 441 | 441 | { |
| 442 | - $this->data->person->lastName = $lastname; |
|
| 442 | + $this->data->person->lastName = $lastname; |
|
| 443 | 443 | |
| 444 | - return $this; |
|
| 444 | + return $this; |
|
| 445 | 445 | } |
| 446 | 446 | |
| 447 | 447 | /** |