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 ( 1ff58f...ec7427 )
by Nicolas
04:22
created
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.
symphony/lib/toolkit/class.emailgatewaymanager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      *
101 101
      * @param string $name
102 102
      *  The gateway to look for
103
-     * @return string|boolean
103
+     * @return string
104 104
      * @todo fix return if gateway does not exist.
105 105
      */
106 106
     public static function __getDriverPath($name)
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      * Does not check if the gateway exists.
114 114
      *
115 115
      * @param string $filename
116
-     * @return string|boolean
116
+     * @return string
117 117
      */
118 118
     public static function __getHandleFromFilename($filename)
119 119
     {
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
@@ -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();
@@ -286,6 +289,9 @@  discard block
 block discarded – undo
286 289
         }
287 290
     }
288 291
 
292
+    /**
293
+     * @param string $file
294
+     */
289 295
     public function validateFilename($file, &$message)
290 296
     {
291 297
         if ($this->get('validator') != null) {
@@ -401,6 +407,9 @@  discard block
 block discarded – undo
401 407
         return $this->validateFilename($data['name'], $message);
402 408
     }
403 409
 
410
+    /**
411
+     * @param integer $entry_id
412
+     */
404 413
     public function processRawFieldData($data, &$status, &$message = null, $simulate = false, $entry_id = null)
405 414
     {
406 415
         $status = self::__OK__;
Please login to merge, or discard this patch.