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.
Passed
Push — master ( efd704...9084d4 )
by Christian
02:55
created
podlove.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
 		if ( is_multisite() ) {
81 81
 			add_filter( 'podlove_psb_defaults_options', array( __CLASS__, 'get_network_defaults' ) );
82
-        }
82
+		}
83 83
 
84 84
 		self::menu();
85 85
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 	public static function get_network_defaults( $options ) {
89 89
 		$network_defaults = get_site_option( 'podlove_psb_defaults' );
90 90
 		return $network_defaults;
91
-    }
91
+	}
92 92
 
93 93
 	public static function widgets() {
94 94
 		register_widget( '\PodloveSubscribeButton\Widget' );
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
 	}
158 158
 
159 159
 	/**
160
-     * Get value from the associative array of the plugin defaults option
161
-     *
160
+	 * Get value from the associative array of the plugin defaults option
161
+	 *
162 162
 	 * @param $key
163 163
 	 * @param bool $default
164 164
 	 *
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 		if ( isset( $attribute_value ) && ctype_alnum( $attribute_value ) && key_exists( $attribute_value, \PodloveSubscribeButton\Model\Button::$$attribute ) ) {
245 245
 			return $attribute_value;
246 246
 		} else {
247
-		    $default = get_option( 'podlove_psb_defaults', \PodloveSubscribeButton\Defaults::options() );
247
+			$default = get_option( 'podlove_psb_defaults', \PodloveSubscribeButton\Defaults::options() );
248 248
 			return $default[ $attribute ];
249 249
 		}
250 250
 
Please login to merge, or discard this patch.