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
Pull Request — 7.x-1.x (#4)
by Brant
02:48
created
modules/df/df_admin/df_admin.strongarm.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * df_admin.strongarm.inc
5
- */
3
+   * @file
4
+   * df_admin.strongarm.inc
5
+   */
6 6
 
7 7
 /**
8 8
  * Implements hook_strongarm().
Please login to merge, or discard this patch.
modules/df/df_admin/df_admin.features.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * df_admin.features.inc
5
- */
3
+   * @file
4
+   * df_admin.features.inc
5
+   */
6 6
 
7 7
 /**
8 8
  * Implements hook_ctools_plugin_api().
Please login to merge, or discard this patch.
modules/df/df_admin/df_admin.drush.inc 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
  *   The machine name of the scenario feature.
138 138
  * @param string $rollback
139 139
  *   Boolean: rollback existing demo content.
140
-  */
140
+ */
141 141
 function drush_df_admin_reset_scenario($scenario) {
142 142
   $rollback = drush_get_option('rollback', TRUE);
143 143
   $seed = drush_get_option('seed', TRUE);
Please login to merge, or discard this patch.
modules/df/df_admin/df_admin.module 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Code for the DF Admin feature.
5
- */
3
+   * @file
4
+   * Code for the DF Admin feature.
5
+   */
6 6
 
7 7
 include_once 'df_admin.features.inc';
8 8
 
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
  * Implements hook_navbar_alter().
79 79
  */
80 80
 function df_admin_navbar_alter(&$items) {
81
-   foreach ($items['administration']['tray']['navbar_administration']['administration_menu'] as $mid => $item) {
81
+    foreach ($items['administration']['tray']['navbar_administration']['administration_menu'] as $mid => $item) {
82 82
     // Change "My Workbench" to "Workbench" in the Navbar.
83 83
     if (isset($item['#href']) && $item['#href'] == 'admin/workbench') {
84 84
       $items['administration']['tray']['navbar_administration']['administration_menu'][$mid]['#title'] = 'Workbench';
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 /**
64 64
  * Implements hook_theme().
65 65
  */
66
-function df_admin_theme(){
66
+function df_admin_theme() {
67 67
   return array(
68 68
     'df_admin_page_template' => array(
69 69
       'template' => 'df-admin-page',
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
       unset($items['administration']['tray']['navbar_administration']['administration_menu'][$mid]);
94 94
     }
95 95
     // Shorten "Demo Framework" to "Demo" on the Navbar.
96
-    if(isset($item['#href']) && $item['#href'] == 'admin/df') {
96
+    if (isset($item['#href']) && $item['#href'] == 'admin/df') {
97 97
       $items['administration']['tray']['navbar_administration']['administration_menu'][$mid]['#title'] = 'Demo';
98 98
     }
99 99
   }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,8 +111,12 @@
 block discarded – undo
111 111
   $modules = system_rebuild_module_data();
112 112
   foreach ($modules as $index => $module) {
113 113
     // Process only modules that are Scenarios and are not enabled.
114
-    if ($module->info['package'] != 'Demo Framework Scenarios') continue;
115
-    if ($module->status) continue;
114
+    if ($module->info['package'] != 'Demo Framework Scenarios') {
115
+      continue;
116
+    }
117
+    if ($module->status) {
118
+      continue;
119
+    }
116 120
 
117 121
     // Functionality taken from _advanced_help_parse_ini().
118 122
     $module_path = drupal_get_path('module', $module->name);
Please login to merge, or discard this patch.
modules/df/df_admin/df_admin.reset.inc 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -108,8 +108,7 @@  discard block
 block discarded – undo
108 108
     foreach ($messages as $message) {
109 109
       $operations[] = array('drupal_get_messages', array($message, TRUE));
110 110
     }
111
-  }
112
-  else {
111
+  } else {
113 112
     // Determine the current alias
114 113
     $alias_context = drush_get_context('alias');
115 114
     $alias = !empty($alias_context) ? $alias_context : '@self';
@@ -139,8 +138,7 @@  discard block
 block discarded – undo
139 138
       $options = array('query' => array('token' => drupal_get_token(DRUPAL_ROOT . '/df/imagestyles')));
140 139
       // The ability to send an array for $redirect is undocumented on Drupal.org, yay!
141 140
       batch_process(array('admin/df/imagestyles', $options));
142
-    }
143
-    else {
141
+    } else {
144 142
       drush_backend_batch_process();
145 143
     }
146 144
   }
Please login to merge, or discard this patch.
modules/df/df_admin/df-admin-page.tpl.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file df-admin-page.tpl.php
4
- */
3
+   * @file df-admin-page.tpl.php
4
+   */
5 5
 ?>
6 6
 
7 7
 <div class="dfs-wrapper">
Please login to merge, or discard this patch.
modules/df/df_admin/df_admin.features.user_permission.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * df_admin.features.user_permission.inc
5
- */
3
+   * @file
4
+   * df_admin.features.user_permission.inc
5
+   */
6 6
 
7 7
 /**
8 8
  * Implements hook_defaultconfig_user_default_permissions().
Please login to merge, or discard this patch.
modules/df/df_admin/df_admin.rules_defaults.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * df_admin.rules_defaults.inc
5
- */
3
+   * @file
4
+   * df_admin.rules_defaults.inc
5
+   */
6 6
 
7 7
 /**
8 8
  * Implements hook_default_rules_configuration().
Please login to merge, or discard this patch.
modules/df/df_translate/df_translate.module 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Code for the DF Translator feature.
5
- */
3
+   * @file
4
+   * Code for the DF Translator feature.
5
+   */
6 6
 
7 7
 include_once 'df_translate.features.inc';
8 8
 
Please login to merge, or discard this patch.