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 ( 5bf78a...a34534 )
by Ariel
03:47
created
src/ICalParser.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
      * Add to $this->ical array one value and key.
170 170
      *
171 171
      * @param {string} $component This could be VTODO, VEVENT, VCALENDAR, ...
172
-     * @param {string} $keyword   The keyword, for example DTSTART
172
+     * @param false|string $keyword   The keyword, for example DTSTART
173 173
      * @param {string} $value     The value, for example 20110105T090000Z
174 174
      *
175 175
      * @return {None}
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
     /**
232 232
      * Get a key-value pair of a string.
233 233
      *
234
-     * @param {string} $text which is like "VCALENDAR:Begin" or "LOCATION:"
234
+     * @param string $text which is like "VCALENDAR:Begin" or "LOCATION:"
235 235
      *
236 236
      * @return {array} array("VCALENDAR", "Begin")
237 237
      */
@@ -749,7 +749,7 @@  discard block
 block discarded – undo
749 749
      * Returns a boolean value whether the current calendar has events or not
750 750
      *
751 751
      * @param {array} $events    An array with events.
752
-     * @param {array} $sortOrder Either SORT_ASC, SORT_DESC, SORT_REGULAR,
752
+     * @param integer $sortOrder Either SORT_ASC, SORT_DESC, SORT_REGULAR,
753 753
      *                           SORT_NUMERIC, SORT_STRING
754 754
      *
755 755
      * @return {boolean}
Please login to merge, or discard this patch.