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 — 8.x-2.x ( 4b827e...a3374a )
by Brant
11:50
created
themes/dfs_base/layouts/onecoltabs/onecoltabs.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
   'theme' => 'fin_onecoltabs',
12 12
   'css' => 'onecoltabs.css',
13 13
   'regions' => array(
14
-  	'top' => t('Top region'),
15
-  	'tabs'   => t('Tabbed region')
16
-  	),
14
+    'top' => t('Top region'),
15
+    'tabs'   => t('Tabbed region')
16
+    ),
17 17
 );
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_color/df_tools_color.module 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -231,6 +231,7 @@
 block discarded – undo
231 231
  * Copied from color.module and modified to add variable replacement support.
232 232
  *
233 233
  * @see _color_rewrite_stylesheet
234
+ * @param string $style
234 235
  */
235 236
 function _df_tools_color_color_rewrite_stylesheet($theme, &$info, &$paths, $palette, $style) {
236 237
   // Prepare color conversion table.
Please login to merge, or discard this patch.
df/df_tools/df_tools_map/src/Plugin/views/filter/SimpleProximity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
    *
143 143
    * @param $options
144 144
    *
145
-   * @return mixed|string
145
+   * @return string
146 146
    */
147 147
   protected function haversine($options) {
148 148
     $formula = '( :earth_radius * ACOS( COS( RADIANS(:origin_latitude) ) * COS( RADIANS(:destination_latitude) ) * COS( RADIANS(:destination_longitude) - RADIANS(:origin_longitude) ) + SIN( RADIANS(:origin_latitude) ) * SIN( RADIANS(:destination_latitude) ) ) )';
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_translation/df_tools_translation.module 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -235,7 +235,7 @@
 block discarded – undo
235 235
  * @param string $type The project type.
236 236
  * @param string $name The name of the project.
237 237
  *
238
- * @return bool FALSE if the project does not exist.
238
+ * @return false|null FALSE if the project does not exist.
239 239
  */
240 240
 function df_tools_translation_import_translations($type, $name) {
241 241
   // Attempt to pull module path.
Please login to merge, or discard this patch.