Completed
Push — master ( dba3c8...01cd01 )
by Jean C.
07:48 queued 01:45
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.
src/Resource/MoipResource.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,11 +90,11 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.