Completed
Push — master ( df95c6...f74e51 )
by
unknown
13s
created
src/Auth/Connect.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
524 524
     }
525 525
 
526 526
     /**
527
-     * @return mixed
527
+     * @return string
528 528
      */
529 529
     public function getClientSecret()
530 530
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -562,7 +562,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Moip.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
tests/TestCase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
     /**
145 145
      * Creates a account.
146 146
      *
147
-     * @return Account
147
+     * @return \stdClass
148 148
      */
149 149
     public function createAccount()
150 150
     {
Please login to merge, or discard this patch.
src/Auth/BasicAuth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Auth/OAuth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
tests/Resource/RefundTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/Resource/Account.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Resource/MoipResource.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -90,11 +90,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Resource/Orders.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
      *
Please login to merge, or discard this patch.