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 ( 8ba932...8a23c6 )
by Bahaa
08:47
created
src/ShoppingCart.php 1 patch
Doc Comments   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * update the cart in the Session
51 51
      *
52
-     * @return update the session cart array and the cart object
52
+     * @return ShoppingCart the session cart array and the cart object
53 53
      */
54 54
     public function update()
55 55
     {
@@ -125,7 +125,6 @@  discard block
 block discarded – undo
125 125
     /**
126 126
      * Reduce 1 item from the Cart
127 127
      *
128
-     * @param object $item item to reduce by 1
129 128
      *
130 129
      * @return update the session cart array and the cart object
131 130
      */
@@ -152,7 +151,6 @@  discard block
 block discarded – undo
152 151
     /**
153 152
      * Remove item from the Cart
154 153
      *
155
-     * @param object $item item to remove
156 154
      *
157 155
      * @return update the session cart array and the cart object
158 156
      */
@@ -186,7 +184,7 @@  discard block
 block discarded – undo
186 184
     /**
187 185
      * get the cart items total price
188 186
      *
189
-     * @return the cart total price
187
+     * @return double|null cart total price
190 188
      */
191 189
     public function total()
192 190
     {
@@ -201,7 +199,7 @@  discard block
 block discarded – undo
201 199
      *
202 200
      * @param options array
203 201
      *
204
-     * @return uniqueIndex for the shopping cart
202
+     * @return string for the shopping cart
205 203
      */
206 204
     public function createUniqueIndex($id, $options)
207 205
     {
@@ -262,7 +260,7 @@  discard block
 block discarded – undo
262 260
      *
263 261
      * @param integer $qty
264 262
      *
265
-     * @return void
263
+     * @return false|null
266 264
      */
267 265
     public function updateItem($uniqueIndex, $qty)
268 266
     {
Please login to merge, or discard this patch.