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 ( d0a974...b1fd0a )
by Christian
02:56
created
podlove.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,8 +188,9 @@
 block discarded – undo
188 188
 		}
189 189
 
190 190
 		// Fetch the (network)button by it's name
191
-		if ( ! $button = \PodloveSubscribeButton\Model\Button::get_button_by_name( $args[ 'button' ] ) )
192
-			return sprintf( __( 'Oops. There is no button with the ID "%s".', 'podlove-subscribe-button' ), $args[ 'button' ] );
191
+		if ( ! $button = \PodloveSubscribeButton\Model\Button::get_button_by_name( $args[ 'button' ] ) ) {
192
+					return sprintf( __( 'Oops. There is no button with the ID "%s".', 'podlove-subscribe-button' ), $args[ 'button' ] );
193
+		}
193 194
 
194 195
 		// Get button styling and options
195 196
 		$autowidth = self::interpret_width_attribute( self::get_array_value_with_fallback( $args, 'width' ) );
Please login to merge, or discard this patch.
inc/Model/Base.php 1 patch
Braces   +18 added lines, -12 removed lines patch added patch discarded remove patch
@@ -45,11 +45,13 @@  discard block
 block discarded – undo
45 45
 	}
46 46
 
47 47
 	private static function unserialize_property( $property ) {
48
-		if ( ! isset( $property ) )
49
-			return;
48
+		if ( ! isset( $property ) ) {
49
+					return;
50
+		}
50 51
 
51
-		if ( $unserialized_string = is_serialized( $property ) )
52
-			return unserialize( $property );
52
+		if ( $unserialized_string = is_serialized( $property ) ) {
53
+					return unserialize( $property );
54
+		}
53 55
 
54 56
 		return $property;
55 57
 	}
@@ -319,8 +321,9 @@  discard block
 block discarded – undo
319 321
 	 */
320 322
 	public function update_attributes( $attributes ) {
321 323
 
322
-		if ( ! is_array( $attributes ) )
323
-			return false;
324
+		if ( ! is_array( $attributes ) ) {
325
+					return false;
326
+		}
324 327
 
325 328
 		$request = filter_input_array( INPUT_POST ); // Do this for security reasons
326 329
 			
@@ -429,12 +432,14 @@  discard block
 block discarded – undo
429 432
 		
430 433
 		$defaults = $this->default_values();
431 434
 
432
-		if ( ! is_array( $defaults ) || empty( $defaults ) )
433
-			return;
435
+		if ( ! is_array( $defaults ) || empty( $defaults ) ) {
436
+					return;
437
+		}
434 438
 
435 439
 		foreach ( $defaults as $property => $value ) {
436
-			if ( $this->$property === null )
437
-				$this->$property = $value;
440
+			if ( $this->$property === null ) {
441
+							$this->$property = $value;
442
+			}
438 443
 		}
439 444
 
440 445
 	}
@@ -495,8 +500,9 @@  discard block
 block discarded – undo
495 500
 		global $wpdb;
496 501
 		
497 502
 		$property_sql = array();
498
-		foreach ( static::properties() as $property )
499
-			$property_sql[ ] = "`{$property[ 'name' ]}` {$property[ 'type' ]}";
503
+		foreach ( static::properties() as $property ) {
504
+					$property_sql[ ] = "`{$property[ 'name' ]}` {$property[ 'type' ]}";
505
+		}
500 506
 		
501 507
 		$sql = 'CREATE TABLE IF NOT EXISTS '
502 508
 		     . static::table_name()
Please login to merge, or discard this patch.
inc/Model/Button.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -186,11 +186,13 @@
 block discarded – undo
186 186
 	 * @return string
187 187
 	 */
188 188
 	private static function interpret_autowidth_attribute( $autowidth ) {
189
-		if ( $autowidth == 'default' && get_option( 'podlove_subscribe_button_default_autowidth' ) !== 'on' )
190
-			return '';
189
+		if ( $autowidth == 'default' && get_option( 'podlove_subscribe_button_default_autowidth' ) !== 'on' ) {
190
+					return '';
191
+		}
191 192
 
192
-		if ( $autowidth !== 'default' && $autowidth !== 'on' )
193
-			return '';
193
+		if ( $autowidth !== 'default' && $autowidth !== 'on' ) {
194
+					return '';
195
+		}
194 196
 
195 197
 		return ' auto';
196 198
 
Please login to merge, or discard this patch.
inc/Settings/Buttons.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -45,8 +45,9 @@  discard block
 block discarded – undo
45 45
 	 * Process form: save/update a format
46 46
 	 */
47 47
 	public static function save() {
48
-		if ( null == filter_input( INPUT_GET, 'button' ) )
49
-			return;
48
+		if ( null == filter_input( INPUT_GET, 'button' ) ) {
49
+					return;
50
+		}
50 51
 
51 52
 		$post = filter_input_array( INPUT_POST );
52 53
 
@@ -81,8 +82,9 @@  discard block
 block discarded – undo
81 82
 	 * Process form: delete a format
82 83
 	 */
83 84
 	public static function delete() {
84
-		if ( null == filter_input( INPUT_GET, 'button' ) )
85
-			return;
85
+		if ( null == filter_input( INPUT_GET, 'button' ) ) {
86
+					return;
87
+		}
86 88
 
87 89
 		$button = ( filter_input( INPUT_GET, 'network' ) === '1' ? \PodloveSubscribeButton\Model\NetworkButton::find_by_id( filter_input( INPUT_GET, 'button' ) ) : \PodloveSubscribeButton\Model\Button::find_by_id( filter_input( INPUT_GET, 'button' ) ) );
88 90
 		$button->delete();
@@ -104,8 +106,9 @@  discard block
 block discarded – undo
104 106
 	}
105 107
 
106 108
 	public static function process_form() {
107
-		if ( null === filter_input( INPUT_GET, 'button' ) )
108
-			return;
109
+		if ( null === filter_input( INPUT_GET, 'button' ) ) {
110
+					return;
111
+		}
109 112
 
110 113
 		$action = ( null !== filter_input( INPUT_GET, 'action' ) ? filter_input( INPUT_GET, 'action' ) : null );
111 114
 
Please login to merge, or discard this patch.
inc/Widget.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,9 +104,11 @@
 block discarded – undo
104 104
 							echo "<option value='" . $subscribebutton->name . "' " . selected( $subscribebutton->name, $button ) . " >" . $subscribebutton->title . " (" . $subscribebutton->name . ")</option>";
105 105
 						} ?>
106 106
                     </optgroup>
107
-				<?php else :
107
+				<?php else {
108
+	:
108 109
 					foreach ( $buttons as $subscribebutton ) {
109 110
 						echo "<option value='" . $subscribebutton->name . "' " . selected( $subscribebutton->name, $button ) . " >" . $subscribebutton->title . " (" . $subscribebutton->name . ")</option>";
111
+}
110 112
 					}
111 113
 				endif; ?>
112 114
             </select>
Please login to merge, or discard this patch.
inc/Helpers.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,8 +88,9 @@
 block discarded – undo
88 88
 		$plugin  = basename( \PodloveSubscribeButton\PLUGIN_DIR ) . '/' . \PodloveSubscribeButton\PLUGIN_FILE_NAME;
89 89
 		$blogids = $wpdb->get_col( "SELECT blog_id FROM " . $wpdb->blogs );
90 90
 
91
-		if ( ! is_array( $blogids ) )
92
-			return;
91
+		if ( ! is_array( $blogids ) ) {
92
+					return;
93
+		}
93 94
 
94 95
 		foreach ( $blogids as $blog_id ) {
95 96
 			switch_to_blog( $blog_id );
Please login to merge, or discard this patch.