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 — 2.5.x ( 043fe2...7161c3 )
by Nicolas
11:57 queued 06:44
created
symphony/lib/toolkit/fields/field.taglist.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -176,6 +176,10 @@  discard block
 block discarded – undo
176 176
         return $ids;
177 177
     }
178 178
 
179
+    /**
180
+     * @param string $field
181
+     * @param string $value
182
+     */
179 183
     public function set($field, $value)
180 184
     {
181 185
         if ($field == 'pre_populate_source' && !is_array($value)) {
@@ -413,6 +417,9 @@  discard block
 block discarded – undo
413 417
         return self::__OK__;
414 418
     }
415 419
 
420
+    /**
421
+     * @param integer $entry_id
422
+     */
416 423
     public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
417 424
     {
418 425
         $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
@@ -196,6 +196,9 @@
 block discarded – undo
196 196
         return self::__OK__;
197 197
     }
198 198
 
199
+    /**
200
+     * @param integer $entry_id
201
+     */
199 202
     public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
200 203
     {
201 204
         $status = self::__OK__;
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.upload.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -122,6 +122,9 @@  discard block
 block discarded – undo
122 122
         return true;
123 123
     }
124 124
 
125
+    /**
126
+     * @param string $file
127
+     */
125 128
     public static function getMetaInfo($file, $type)
126 129
     {
127 130
         $meta = array();
@@ -392,6 +395,9 @@  discard block
 block discarded – undo
392 395
         return self::__OK__;
393 396
     }
394 397
 
398
+    /**
399
+     * @param integer $entry_id
400
+     */
395 401
     public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
396 402
     {
397 403
         $status = self::__OK__;
Please login to merge, or discard this patch.
symphony/lib/core/class.errorhandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -418,7 +418,7 @@
 block discarded – undo
418 418
      *
419 419
      * @param string $name
420 420
      *  Name of the template
421
-     * @return mixed
421
+     * @return string|false
422 422
      *  String, which is the path to the template if the template is found,
423 423
      *  false otherwise
424 424
      */
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.checkbox.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -196,6 +196,9 @@
 block discarded – undo
196 196
         return self::__OK__;
197 197
     }
198 198
 
199
+    /**
200
+     * @param integer $entry_id
201
+     */
199 202
     public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
200 203
     {
201 204
         $status = self::__OK__;
Please login to merge, or discard this patch.
symphony/lib/toolkit/fields/field.select.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -196,6 +196,9 @@
 block discarded – undo
196 196
         return self::__OK__;
197 197
     }
198 198
 
199
+    /**
200
+     * @param integer $entry_id
201
+     */
199 202
     public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
200 203
     {
201 204
         $status = self::__OK__;
Please login to merge, or discard this patch.
install/lib/class.installer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -72,6 +72,7 @@  discard block
 block discarded – undo
72 72
 		/**
73 73
 		 * Overrides the default `initialiseLog()` method and writes
74 74
 		 * logs to manifest/logs/install
75
+		 * @param string $filename
75 76
 		 */
76 77
 		public static function initialiseLog($filename = null){
77 78
 			if(is_dir(INSTALL_LOGS) || General::realiseDirectory(INSTALL_LOGS, self::Configuration()->get('write_mode', 'directory'))) {
@@ -384,6 +385,8 @@  discard block
 block discarded – undo
384 385
 		 * If something went wrong, the `__abort` function will write an entry to the Log
385 386
 		 * file and display the failure page to the user.
386 387
 		 * @todo: Resume installation after an error has been fixed.
388
+		 * @param string $message
389
+		 * @param integer $start
387 390
 		 */
388 391
 		protected static function __abort($message, $start){
389 392
 			$result = Symphony::Log()->pushToLog($message, E_ERROR, true);
Please login to merge, or discard this patch.
install/lib/class.installerpage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -420,6 +420,9 @@
 block discarded – undo
420 420
 			$this->Form->appendChild($Submit);
421 421
 		}
422 422
 
423
+		/**
424
+		 * @param string $message
425
+		 */
423 426
 		private function __appendError(array $codes, XMLElement &$element, $message = null){
424 427
 			if(is_null($message)) {
425 428
 				$message =  __('The following errors have been reported:');
Please login to merge, or discard this patch.
install/lib/class.updaterpage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
 
9 9
 	Class UpdaterPage extends InstallerPage {
10 10
 
11
+		/**
12
+		 * @param string $template
13
+		 */
11 14
 		public function __construct($template, $params = array()) {
12 15
 			parent::__construct($template, $params);
13 16
 
Please login to merge, or discard this patch.