GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( a7ee1a...52140c )
by
unknown
82:37 queued 11:46
created
app/code/community/EbayEnterprise/GiftCard/Model/Order/Create/Payment.php 1 patch
Doc Comments   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     /**
32 32
      * ensure correct types
33 33
      * @param  EbayEnterprise_GiftCard_Model_IContainer $container
34
-     * @return array
34
+     * @return EbayEnterprise_GiftCard_Model_IContainer[]
35 35
      */
36 36
     protected function _enforceTypes(EbayEnterprise_GiftCard_Model_IContainer $container)
37 37
     {
@@ -72,6 +72,11 @@  discard block
 block discarded – undo
72 72
         }
73 73
     }
74 74
 
75
+    /**
76
+     * @param string $key
77
+     *
78
+     * @return EbayEnterprise_GiftCard_Model_IContainer
79
+     */
75 80
     protected function _nullCoalesce($key, array $args, $default)
76 81
     {
77 82
         return isset($args[$key]) ? $args[$key] : $default;
@@ -93,7 +98,7 @@  discard block
 block discarded – undo
93 98
      * return the raw PAN.
94 99
      *
95 100
      * @param EbayEnterprise_GiftCard_Model_IGiftcard
96
-     * @return bool
101
+     * @return string
97 102
      */
98 103
     protected function getGcPan(EbayEnterprise_GiftCard_Model_IGiftcard $giftcard)
99 104
     {
Please login to merge, or discard this patch.