@@ -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 | } |
@@ -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 |
|
94 | - * @param $fmt |
|
93 | + * @param string $key |
|
94 | + * @param string $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 | { |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | /** |
152 | 152 | * Generate URL to request. |
153 | 153 | * |
154 | - * @param $action |
|
154 | + * @param string $action |
|
155 | 155 | * @param $id |
156 | 156 | * |
157 | 157 | * @return string |
@@ -243,9 +243,9 @@ discard block |
||
243 | 243 | /** |
244 | 244 | * Delete a new item in Moip. |
245 | 245 | * |
246 | - * @param $path |
|
246 | + * @param string $path |
|
247 | 247 | * |
248 | - * @return mixed |
|
248 | + * @return stdClass |
|
249 | 249 | */ |
250 | 250 | public function deleteByPath($path) |
251 | 251 | { |
@@ -446,7 +446,7 @@ discard block |
||
446 | 446 | /** |
447 | 447 | * Create a new Orders list instance. |
448 | 448 | * |
449 | - * @return \Moip\Resource\OrdersList |
|
449 | + * @return stdClass |
|
450 | 450 | */ |
451 | 451 | public function getList(Pagination $pagination = null, Filters $filters = null, $qParam = '') |
452 | 452 | { |
@@ -618,7 +618,7 @@ discard block |
||
618 | 618 | /** |
619 | 619 | * Set installment settings for checkout preferences. |
620 | 620 | * |
621 | - * @param array $quantity |
|
621 | + * @param integer[] $quantity |
|
622 | 622 | * @param int $discountValue |
623 | 623 | * @param int $additionalValue |
624 | 624 | * |