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
Pull Request — master (#55)
by Christian
04:15
created
inc/Model/Button.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -173,11 +173,13 @@
 block discarded – undo
173 173
 	 * @return string
174 174
 	 */
175 175
 	private static function interpret_autowidth_attribute( $autowidth ) {
176
-		if ( $autowidth == 'default' && get_option( 'podlove_psb_defaults' )['autowidth'] !== 'on' )
177
-			return '';
176
+		if ( $autowidth == 'default' && get_option( 'podlove_psb_defaults' )['autowidth'] !== 'on' ) {
177
+					return '';
178
+		}
178 179
 
179
-		if ( $autowidth !== 'default' && $autowidth !== 'on' )
180
-			return '';
180
+		if ( $autowidth !== 'default' && $autowidth !== 'on' ) {
181
+					return '';
182
+		}
181 183
 
182 184
 		return ' auto';
183 185
 
Please login to merge, or discard this patch.