@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | /** |
419 | 419 | * Unique identifier of the application that will be carried out the request. |
420 | 420 | * |
421 | - * @return mixed |
|
421 | + * @return string |
|
422 | 422 | */ |
423 | 423 | public function getClientId() |
424 | 424 | { |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | /** |
443 | 443 | * Client Redirect URI. |
444 | 444 | * |
445 | - * @return mixed |
|
445 | + * @return string |
|
446 | 446 | */ |
447 | 447 | public function getRedirectUri() |
448 | 448 | { |
@@ -524,7 +524,7 @@ discard block |
||
524 | 524 | } |
525 | 525 | |
526 | 526 | /** |
527 | - * @return mixed |
|
527 | + * @return string |
|
528 | 528 | */ |
529 | 529 | public function getClientSecret() |
530 | 530 | { |
@@ -562,7 +562,7 @@ |
||
562 | 562 | * |
563 | 563 | * @param Requests_Hooks $hooks Hook system |
564 | 564 | */ |
565 | - public function register(Requests_Hooks &$hooks) |
|
565 | + public function register(Requests_Hooks & $hooks) |
|
566 | 566 | { |
567 | 567 | // TODO: Implement register() method. |
568 | 568 | } |
@@ -60,7 +60,7 @@ |
||
60 | 60 | /** |
61 | 61 | * Create a new aurhentication with the endpoint. |
62 | 62 | * |
63 | - * @param \Moip\Auth\MoipAuthentication $moipAuthentication |
|
63 | + * @param Authentication $moipAuthentication |
|
64 | 64 | * @param string $endpoint |
65 | 65 | */ |
66 | 66 | public function __construct(Authentication $moipAuthentication, $endpoint = self::ENDPOINT_PRODUCTION) |
@@ -144,7 +144,7 @@ |
||
144 | 144 | /** |
145 | 145 | * Creates a account. |
146 | 146 | * |
147 | - * @return Account |
|
147 | + * @return \stdClass |
|
148 | 148 | */ |
149 | 149 | public function createAccount() |
150 | 150 | { |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * |
38 | 38 | * @param \Requests_Hooks $hooks Hook system |
39 | 39 | */ |
40 | - public function register(Requests_Hooks &$hooks) |
|
40 | + public function register(Requests_Hooks & $hooks) |
|
41 | 41 | { |
42 | 42 | $hooks->register('requests.before_request', [&$this, 'before_request']); |
43 | 43 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * |
38 | 38 | * @param \Requests_Hooks $hooks Hook system |
39 | 39 | */ |
40 | - public function register(Requests_Hooks &$hooks) |
|
40 | + public function register(Requests_Hooks & $hooks) |
|
41 | 41 | { |
42 | 42 | $hooks->register('requests.before_request', [&$this, 'before_request']); |
43 | 43 | } |
@@ -603,7 +603,7 @@ |
||
603 | 603 | /** |
604 | 604 | * Set installment settings for checkout preferences. |
605 | 605 | * |
606 | - * @param array $quantity |
|
606 | + * @param integer[] $quantity |
|
607 | 607 | * @param int $discountValue |
608 | 608 | * @param int $additionalValue |
609 | 609 | * |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | $order = $this->createOrder()->create(); |
13 | 13 | $this->mockHttpSession($this->body_billet_pay); |
14 | 14 | $payment = $order->payments() |
15 | - ->setBoleto(new \DateTime('today +1day'),'http://dev.moip.com.br/images/logo-header-moip.png') |
|
15 | + ->setBoleto(new \DateTime('today +1day'), 'http://dev.moip.com.br/images/logo-header-moip.png') |
|
16 | 16 | ->execute(); |
17 | 17 | $this->mockHttpSession(''); |
18 | 18 | $payment->authorize(); |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $order = $this->createOrder()->create(); |
29 | 29 | $this->mockHttpSession($this->body_billet_pay); |
30 | 30 | $payment = $order->payments() |
31 | - ->setBoleto(new \DateTime('today +1day'),'http://dev.moip.com.br/images/logo-header-moip.png') |
|
31 | + ->setBoleto(new \DateTime('today +1day'), 'http://dev.moip.com.br/images/logo-header-moip.png') |
|
32 | 32 | ->execute(); |
33 | 33 | $this->mockHttpSession(''); |
34 | 34 | $payment->authorize(); |
@@ -355,7 +355,7 @@ discard block |
||
355 | 355 | /** |
356 | 356 | * Set birth date from account. |
357 | 357 | * |
358 | - * @param \DateTime|string $birthDate Date of birth of the credit card holder. |
|
358 | + * @param string $birthDate Date of birth of the credit card holder. |
|
359 | 359 | * |
360 | 360 | * @return \Moip\Resource\Account |
361 | 361 | */ |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | * |
412 | 412 | * @param string $number Número do documento. |
413 | 413 | * @param string $issuer Emissor do documento. |
414 | - * @param $issueDate |
|
414 | + * @param string $issueDate |
|
415 | 415 | * @param string $type Tipo do documento. Valores possíveis: RG. |
416 | 416 | * |
417 | 417 | * @return Account |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | /** |
534 | 534 | * Set company opening date. |
535 | 535 | * |
536 | - * @param \DateTime|string $openingDate . |
|
536 | + * @param string $openingDate . |
|
537 | 537 | * |
538 | 538 | * @return $this |
539 | 539 | */ |
@@ -566,8 +566,9 @@ discard block |
||
566 | 566 | /** |
567 | 567 | * Set company tax document. |
568 | 568 | * |
569 | - * @param string $documentNumber . |
|
570 | 569 | * |
570 | + * @param string $cnae |
|
571 | + * @param string $description |
|
571 | 572 | * @return $this |
572 | 573 | */ |
573 | 574 | public function setCompanyMainActivity($cnae, $description) |
@@ -90,11 +90,11 @@ discard block |
||
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
93 | - * @param $key |
|
93 | + * @param string $key |
|
94 | 94 | * @param $fmt |
95 | 95 | * @param stdClass|null $data |
96 | 96 | * |
97 | - * @return bool|\DateTime|null |
|
97 | + * @return \DateTime|null |
|
98 | 98 | */ |
99 | 99 | protected function getIfSetDateFmt($key, $fmt, stdClass $data = null) |
100 | 100 | { |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | /** |
146 | 146 | * Generate URL to request. |
147 | 147 | * |
148 | - * @param $action |
|
148 | + * @param string $action |
|
149 | 149 | * @param $id |
150 | 150 | * |
151 | 151 | * @return string |
@@ -237,9 +237,9 @@ discard block |
||
237 | 237 | /** |
238 | 238 | * Delete a new item in Moip. |
239 | 239 | * |
240 | - * @param $path |
|
240 | + * @param string $path |
|
241 | 241 | * |
242 | - * @return mixed |
|
242 | + * @return stdClass |
|
243 | 243 | */ |
244 | 244 | public function deleteByPath($path) |
245 | 245 | { |