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
Branch master (aa8fcd)
by Brendan
03:20
created
symphony/lib/core/class.cookie.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
      * Initialises a new Session instance using this cookie's params
121 121
      *
122 122
      * @throws Exception
123
-     * @return Session
123
+     * @return false|string
124 124
      */
125 125
     private function __init()
126 126
     {
Please login to merge, or discard this patch.
symphony/lib/core/class.datetimeobj.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      *
108 108
      * @since Symphony 2.2.4
109 109
      * @param string $name
110
-     * @return array|string|null
110
+     * @return string
111 111
      *  If `$name` is omitted this function returns array.
112 112
      *  If `$name` is not set, this fucntion returns `null`
113 113
      *  If `$name` is set, this function returns string
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
      *  result in the current time being used
192 192
      * @param string $timezone (optional)
193 193
      *  The timezone associated with the timestamp
194
-     * @return string|boolean
194
+     * @return false|string
195 195
      *  The formatted date, of if the date could not be parsed, false.
196 196
      */
197 197
     public static function get($format, $timestamp = 'now', $timezone = null)
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      *  Localizes the output, if true, defaults to true
214 214
      * @param string $timezone (optional)
215 215
      *  The timezone associated with the timestamp
216
-     * @return string|boolean
216
+     * @return false|string
217 217
      *  The formatted date, or if the date could not be parsed, false.
218 218
      */
219 219
     public static function format($string = 'now', $format = DateTime::ISO8601, $localize = true, $timezone = null)
Please login to merge, or discard this patch.
symphony/lib/core/class.log.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      * @param boolean $append
194 194
      *  If set to true, the given `$message` will be append to the previous log
195 195
      *  message found in the `$_log` array
196
-     * @return mixed
196
+     * @return boolean|null
197 197
      *  If `$writeToLog` is passed, this function will return boolean, otherwise
198 198
      *  void
199 199
      */
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
      * @param boolean $append
252 252
      *  If set to true, the given `$message` will be append to the previous log
253 253
      *  message found in the `$_log` array
254
-     * @return mixed
254
+     * @return boolean|null
255 255
      *  If `$writeToLog` is passed, this function will return boolean, otherwise
256 256
      *  void
257 257
      */
Please login to merge, or discard this patch.
symphony/lib/core/class.session.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      *  Whether this cookie should only be sent on secure servers. By default this is
47 47
      *  false, which means the cookie can be sent over HTTP and HTTPS
48 48
      * @throws Exception
49
-     * @return string|boolean
49
+     * @return false|string
50 50
      *  Returns the Session ID on success, or false on error.
51 51
      */
52 52
     public static function start($lifetime = 0, $path = '/', $domain = null, $httpOnly = true, $secure = false)
Please login to merge, or discard this patch.
symphony/lib/toolkit/class.entrymanager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -580,7 +580,7 @@  discard block
 block discarded – undo
580 580
      *
581 581
      * @param integer $entry_id
582 582
      *  The ID of the Entry to return it's section
583
-     * @return integer
583
+     * @return string|null
584 584
      *  The Section ID for this Entry's section
585 585
      */
586 586
     public static function fetchEntrySectionID($entry_id)
@@ -661,7 +661,7 @@  discard block
 block discarded – undo
661 661
      *  by providing an array of field names. Defaults to null, which will load data
662 662
      *  from all fields in a section.
663 663
      * @throws Exception
664
-     * @return array
664
+     * @return integer|null
665 665
      *  Either an array of Entry objects, or an associative array containing
666 666
      *  the total entries, the start position, the entries per page and the
667 667
      *  Entry objects
Please login to merge, or discard this patch.
symphony/lib/toolkit/class.extensionmanager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
      *  The name of the Extension Class minus the extension prefix.
325 325
      * @param string $file_version
326 326
      *  The version of the extension from the **file**, not the Database.
327
-     * @return string|boolean
327
+     * @return false|string
328 328
      *  If the given extension (by $name) requires updating, the installed
329 329
      *  version is returned, otherwise, if the extension doesn't require
330 330
      *  updating, false.
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
      *  An extension object
573 573
      * @throws SymphonyErrorPage
574 574
      * @throws Exception
575
-     * @return boolean
575
+     * @return boolean|null
576 576
      */
577 577
     private static function __canUninstallOrDisable(Extension $obj)
578 578
     {
Please login to merge, or discard this patch.
symphony/lib/toolkit/class.fieldmanager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      *
58 58
      * @param string $type
59 59
      *  The field handle, that is, `field.{$handle}.php`
60
-     * @return string|boolean
60
+     * @return string|false
61 61
      */
62 62
     public static function __getClassPath($type)
63 63
     {
Please login to merge, or discard this patch.
symphony/lib/toolkit/class.htmlpage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -287,7 +287,7 @@
 block discarded – undo
287 287
      * it is also possible to override the default filters on the resulting string.
288 288
      *
289 289
      * @link http://php.net/manual/en/filter.filters.php
290
-     * @param array $exclude
290
+     * @param string[] $exclude
291 291
      *  A simple array with the keys that should be omitted in the resulting
292 292
      *  query string.
293 293
      * @param integer $filters
Please login to merge, or discard this patch.
symphony/lib/toolkit/class.lang.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -537,7 +537,7 @@
 block discarded – undo
537 537
      * @since Symphony 2.3
538 538
      * @param string $string
539 539
      *  The string that should be cleaned-up
540
-     * @return mixed
540
+     * @return string
541 541
      *  Returns the transliterated string
542 542
      */
543 543
     private static function applyTransliterations($string)
Please login to merge, or discard this patch.