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 — integration ( 7a98f7...0ef3fb )
by Brendan
04:39
created
symphony/lib/toolkit/data-sources/class.datasource.navigation.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -60,6 +60,9 @@
 block discarded – undo
60 60
             return $result;
61 61
         }
62 62
 
63
+        /**
64
+         * @param integer $filter_type
65
+         */
63 66
         public function __processNavigationTypeFilter($filter, $filter_type = Datasource::FILTER_OR)
64 67
         {
65 68
             $types = preg_split('/' . ($filter_type === Datasource::FILTER_AND ? '\+' : '(?<!\\\\),') . '\s*/', $filter,
Please login to merge, or discard this patch.
symphony/lib/toolkit/events/class.event.section.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
          * the XML.
56 56
          *
57 57
          * @throws Exception
58
-         * @return XMLElement|void
58
+         * @return XMLElement
59 59
          *  If `$_REQUEST{'redirect']` is set, and the Event executed successfully,
60 60
          *  the user will be redirected to the given location. If `$_REQUEST['redirect']`
61 61
          *  is not set, or the Event encountered errors, an XMLElement of the Event
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
          *  If this Event is editing an existing entry, that Entry ID will
179 179
          *  be passed to this function.
180 180
          * @throws Exception
181
-         * @return XMLElement
181
+         * @return boolean
182 182
          *  The result of the Event
183 183
          */
184 184
         public function __doit(array $fields = array(), XMLElement &$result, $position = null, $entry_id = null)
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
          * @param XMLElement $result
393 393
          * @param array $fields
394 394
          * @param array $errors
395
-         * @param object $post_values
395
+         * @param XMLElement $post_values
396 396
          * @throws Exception
397 397
          * @return XMLElement
398 398
          */
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.author.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
             Definition:
28 28
         -------------------------------------------------------------------------*/
29 29
 
30
+        /**
31
+         * @param string $field
32
+         */
30 33
         public function set($field, $value)
31 34
         {
32 35
             if ($field === 'author_types' && !is_array($value)) {
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.date.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -480,6 +480,9 @@  discard block
 block discarded – undo
480 480
             );
481 481
         }
482 482
 
483
+        /**
484
+         * @param integer $entry_id
485
+         */
483 486
         public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
484 487
         {
485 488
             $status = self::__OK__;
@@ -569,6 +572,10 @@  discard block
 block discarded – undo
569 572
             );
570 573
         }
571 574
 
575
+        /**
576
+         * @param string $joins
577
+         * @param string $where
578
+         */
572 579
         public function buildDSRetrievalSQL($data, &$joins, &$where, $andOperation = false)
573 580
         {
574 581
             if (self::isFilterRegex($data[0])) {
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.input.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -169,6 +169,9 @@  discard block
 block discarded – undo
169 169
             Publish:
170 170
         -------------------------------------------------------------------------*/
171 171
 
172
+        /**
173
+         * @param string $data
174
+         */
172 175
         private function __applyValidationRules($data)
173 176
         {
174 177
             $rule = $this->get('validator');
@@ -205,6 +208,9 @@  discard block
 block discarded – undo
205 208
             );
206 209
         }
207 210
 
211
+        /**
212
+         * @param string $value
213
+         */
208 214
         private function __replaceAmpersands($value)
209 215
         {
210 216
             return preg_replace('/&(?!(#[0-9]+|#x[0-9a-f]+|amp|lt|gt);)/i', '&amp;', trim($value));
@@ -240,6 +246,9 @@  discard block
 block discarded – undo
240 246
             );
241 247
         }
242 248
 
249
+        /**
250
+         * @param integer $entry_id
251
+         */
243 252
         public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
244 253
         {
245 254
             $status = self::__OK__;
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.taglist.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -25,6 +25,10 @@  discard block
 block discarded – undo
25 25
             Definition:
26 26
         -------------------------------------------------------------------------*/
27 27
 
28
+        /**
29
+         * @param string $field
30
+         * @param string $value
31
+         */
28 32
         public function set($field, $value)
29 33
         {
30 34
             if ($field === 'pre_populate_source' && !is_array($value)) {
@@ -584,6 +588,9 @@  discard block
 block discarded – undo
584 588
             );
585 589
         }
586 590
 
591
+        /**
592
+         * @param integer $entry_id
593
+         */
587 594
         public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
588 595
         {
589 596
             $status = self::__OK__;
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.textarea.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -289,6 +289,9 @@
 block discarded – undo
289 289
             );
290 290
         }
291 291
 
292
+        /**
293
+         * @param integer $entry_id
294
+         */
292 295
         public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
293 296
         {
294 297
             $status = self::__OK__;
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.upload.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -374,6 +374,9 @@  discard block
 block discarded – undo
374 374
             return $this->validateFilename($data['name'], $message);
375 375
         }
376 376
 
377
+        /**
378
+         * @param string $file
379
+         */
377 380
         public function validateFilename($file, &$message)
378 381
         {
379 382
             if ($this->get('validator') !== null) {
@@ -506,6 +509,9 @@  discard block
 block discarded – undo
506 509
             Import:
507 510
         -------------------------------------------------------------------------*/
508 511
 
512
+        /**
513
+         * @param integer $entry_id
514
+         */
509 515
         public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
510 516
         {
511 517
             $status = self::__OK__;
@@ -666,6 +672,9 @@  discard block
 block discarded – undo
666 672
             );
667 673
         }
668 674
 
675
+        /**
676
+         * @param string $file
677
+         */
669 678
         public static function getMetaInfo($file, $type)
670 679
         {
671 680
             $meta = array();
Please login to merge, or discard this patch.
symphony/lib/core/class.genericexceptionhandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -452,7 +452,7 @@
 block discarded – undo
452 452
          *
453 453
          * @param string $name
454 454
          *  Name of the template
455
-         * @return mixed
455
+         * @return string|false
456 456
          *  String, which is the path to the template if the template is found,
457 457
          *  false otherwise
458 458
          */
Please login to merge, or discard this patch.