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 — master (#208)
by Dan
21:20
created
includes/admin/actions.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 // Exit if accessed directly
3
-if ( ! defined( 'ABSPATH' ) ) {
3
+if ( ! defined( 'ABSPATH' )) {
4 4
 	exit;
5 5
 }
6 6
 
@@ -14,14 +14,14 @@  discard block
 block discarded – undo
14 14
  */
15 15
 function ppp_disconnect_social() {
16 16
 
17
-	if ( isset( $_GET['ppp_social_disconnect'] ) && isset( $_GET['ppp_network'] ) ) {
17
+	if (isset($_GET['ppp_social_disconnect']) && isset($_GET['ppp_network'])) {
18 18
 
19
-		if ( ! current_user_can( 'manage_options' ) ) {
19
+		if ( ! current_user_can( 'manage_options' )) {
20 20
 			wp_die( __( 'You do not have permission to view this page', 'ppp-txt' ) );
21 21
 		}
22 22
 
23 23
 		$network = $_GET['ppp_network'];
24
-		do_action( 'ppp_disconnect-' . $network );
24
+		do_action( 'ppp_disconnect-'.$network );
25 25
 	}
26 26
 }
27 27
 add_action( 'admin_init', 'ppp_disconnect_social', 10 );
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
 
36 36
 	$tabs = apply_filters( 'ppp_metabox_tabs', array() );
37 37
 	$i = 0;
38
-	foreach ( $tabs as $key => $values ) {
39
-		if ( $i === 0 ) {
38
+	foreach ($tabs as $key => $values) {
39
+		if ($i === 0) {
40 40
 			$visibleKey = $key;
41 41
 			$class = 'tabs';
42 42
 		} else {
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 		}
45 45
 
46 46
 		?><li class="<?php echo $class; ?>"><a href="#<?php echo $key; ?>"><?php
47
-		if ( $values['class'] !== false ) {
47
+		if ($values['class'] !== false) {
48 48
 			?>
49 49
 			<span class="dashicons <?php echo $values['class']; ?>"></span>&nbsp;
50 50
 			<?php
@@ -65,15 +65,15 @@  discard block
 block discarded – undo
65 65
 	$tabs = apply_filters( 'ppp_admin_tabs', array() );
66 66
 	$i = 0;
67 67
 	?><h2 id="ppp-social-connect-tabs" class="nav-tab-wrapper"><?php
68
-	foreach ( $tabs as $key => $values ) {
69
-		if ( $i === 0 ) {
68
+	foreach ($tabs as $key => $values) {
69
+		if ($i === 0) {
70 70
 			$visibleSettingTab = $key;
71 71
 			$class = ' nav-tab-active';
72 72
 		} else {
73 73
 			$class = '';
74 74
 		}
75 75
 		?><a class="nav-tab<?php echo $class; ?>" href='#<?php echo $key; ?>'><?php
76
-		if ( $values['class'] !== false ) {
76
+		if ($values['class'] !== false) {
77 77
 			?>
78 78
 			<span class="dashicons <?php echo $values['class']; ?>"></span>&nbsp;
79 79
 			<?php
@@ -94,14 +94,14 @@  discard block
 block discarded – undo
94 94
 function ppp_generate_metabox_content( $post ) {
95 95
 	global $visibleKey;
96 96
 	$tab_content = apply_filters( 'ppp_metabox_content', array() );
97
-	if ( empty( $tab_content ) ) {
97
+	if (empty($tab_content)) {
98 98
 		printf( __( 'No social media accounts active. <a href="%s">Connect with your accounts now</a>.', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-social-settings' ) );
99 99
 	} else {
100
-		foreach ( $tab_content as $service ) {
101
-			$hidden = ( $visibleKey == $service ) ? '' : ' hidden';
100
+		foreach ($tab_content as $service) {
101
+			$hidden = ($visibleKey == $service) ? '' : ' hidden';
102 102
 			?>
103 103
 			<div class="wp-tab-panel tabs-panel<?php echo $hidden; ?>" id="<?php echo $service; ?>">
104
-				<?php do_action( 'ppp_generate_metabox_content-' . $service, $post ); ?>
104
+				<?php do_action( 'ppp_generate_metabox_content-'.$service, $post ); ?>
105 105
 			</div>
106 106
 			<?php
107 107
 		}
@@ -116,14 +116,14 @@  discard block
 block discarded – undo
116 116
 function ppp_generate_social_account_content() {
117 117
 	global $visibleSettingTab;
118 118
 	$tab_content = apply_filters( 'ppp_admin_social_content', array() );
119
-	if ( empty( $tab_content ) ) {
119
+	if (empty($tab_content)) {
120 120
 		printf( __( 'No social media accounts active. <a href="%s">Connect with your accounts now</a>.', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-social-settings' ) );
121 121
 	} else {
122
-		foreach ( $tab_content as $service ) {
123
-			$hidden = ( $visibleSettingTab == $service ) ? '' : ' hidden';
122
+		foreach ($tab_content as $service) {
123
+			$hidden = ($visibleSettingTab == $service) ? '' : ' hidden';
124 124
 			?>
125 125
 			<div class="ppp-social-connect<?php echo $hidden; ?>" id="<?php echo $service; ?>">
126
-				<?php do_action( 'ppp_connect_display-' . $service ); ?>
126
+				<?php do_action( 'ppp_connect_display-'.$service ); ?>
127 127
 			</div>
128 128
 			<?php
129 129
 		}
@@ -136,30 +136,30 @@  discard block
 block discarded – undo
136 136
  * @return void
137 137
  */
138 138
 function ppp_list_view_maybe_take_action() {
139
-	if ( ! isset( $_GET['page'] ) || $_GET['page'] !== 'ppp-schedule-info' ) {
139
+	if ( ! isset($_GET['page']) || $_GET['page'] !== 'ppp-schedule-info') {
140 140
 		return;
141 141
 	}
142 142
 
143
-	if ( ! isset( $_GET['action'] ) ) {
143
+	if ( ! isset($_GET['action'])) {
144 144
 		return;
145 145
 	}
146 146
 
147 147
 	// Get the necessary info for the actions
148
-	$post_id = isset( $_GET['post_id'] ) ? $_GET['post_id'] : 0;
149
-	$name    = isset( $_GET['name'] ) ? $_GET['name'] : '';
150
-	$index   = isset( $_GET['index'] ) ? $_GET['index'] : 0;
151
-	$delete  = isset( $_GET['delete_too'] ) ? true : false;
148
+	$post_id = isset($_GET['post_id']) ? $_GET['post_id'] : 0;
149
+	$name    = isset($_GET['name']) ? $_GET['name'] : '';
150
+	$index   = isset($_GET['index']) ? $_GET['index'] : 0;
151
+	$delete  = isset($_GET['delete_too']) ? true : false;
152 152
 
153
-	switch( $_GET['action'] ) {
153
+	switch ($_GET['action']) {
154 154
 		case 'delete_item':
155
-			if ( ! empty( $post_id ) && ! empty( $name ) || empty( $index ) ) {
156
-				ppp_remove_scheduled_share( array( (int)$post_id, $name ) ); // Remove the item in cron
155
+			if ( ! empty($post_id) && ! empty($name) || empty($index)) {
156
+				ppp_remove_scheduled_share( array( (int) $post_id, $name ) ); // Remove the item in cron
157 157
 
158 158
 				// Remove the item from postmeta if it exists.
159 159
 				$current_post_meta = get_post_meta( $post_id, '_ppp_tweets', true );
160 160
 
161
-				if ( isset( $current_post_meta[$index] ) ) {
162
-					unset( $current_post_meta[$index] );
161
+				if (isset($current_post_meta[$index])) {
162
+					unset($current_post_meta[$index]);
163 163
 					update_post_meta( $post_id, '_ppp_tweets', $current_post_meta );
164 164
 				}
165 165
 
@@ -168,17 +168,17 @@  discard block
 block discarded – undo
168 168
 			}
169 169
 			break;
170 170
 		case 'share_now':
171
-			if ( ! empty( $post_id ) && ! empty( $name ) ) {
171
+			if ( ! empty($post_id) && ! empty($name)) {
172 172
 				ppp_share_post( $post_id, $name );
173 173
 
174
-				if ( $delete && ! empty( $index ) ) {
175
-					ppp_remove_scheduled_share( array( (int)$post_id, $name ) ); // Remove the item in cron
174
+				if ($delete && ! empty($index)) {
175
+					ppp_remove_scheduled_share( array( (int) $post_id, $name ) ); // Remove the item in cron
176 176
 
177 177
 					// Remove the item from postmeta if it exists.
178 178
 					$current_post_meta = get_post_meta( $post_id, '_ppp_tweets', true );
179 179
 
180
-					if ( isset( $current_post_meta[$index] ) ) {
181
-						unset( $current_post_meta[$index] );
180
+					if (isset($current_post_meta[$index])) {
181
+						unset($current_post_meta[$index]);
182 182
 						update_post_meta( $post_id, '_ppp_tweets', $current_post_meta );
183 183
 					}
184 184
 
Please login to merge, or discard this patch.
includes/admin/admin-ajax.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Exit if accessed directly
4
-if ( ! defined( 'ABSPATH' ) ) {
4
+if ( ! defined( 'ABSPATH' )) {
5 5
 	exit;
6 6
 }
7 7
 
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 	$date = sanitize_text_field( $_POST['date'] );
11 11
 	$time = sanitize_text_field( $_POST['time'] );
12 12
 
13
-	$offset = (int) -( get_option( 'gmt_offset' ) ); // Make the timestamp in the users' timezone, b/c that makes more sense
13
+	$offset = (int) -(get_option( 'gmt_offset' )); // Make the timestamp in the users' timezone, b/c that makes more sense
14 14
 
15 15
 	$share_time = explode( ':', $time );
16 16
 
@@ -18,11 +18,11 @@  discard block
 block discarded – undo
18 18
 	$minutes = (int) substr( $share_time[1], 0, 2 );
19 19
 	$ampm = strtolower( substr( $share_time[1], -2 ) );
20 20
 
21
-	if ( $ampm == 'pm' && $hours != 12 ) {
21
+	if ($ampm == 'pm' && $hours != 12) {
22 22
 		$hours = $hours + 12;
23 23
 	}
24 24
 
25
-	if ( $ampm == 'am' && $hours == 12 ) {
25
+	if ($ampm == 'am' && $hours == 12) {
26 26
 		$hours = 00;
27 27
 	}
28 28
 
Please login to merge, or discard this patch.
includes/admin/class-accounts-table.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Exit if accessed directly
4
-if ( ! defined( 'ABSPATH' ) ) {
4
+if ( ! defined( 'ABSPATH' )) {
5 5
 	exit;
6 6
 }
7 7
 
8
-if ( ! class_exists( 'WP_List_Table' ) ) {
9
-	require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
8
+if ( ! class_exists( 'WP_List_Table' )) {
9
+	require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php';
10 10
 }
11 11
 
12 12
 /**
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 	 * @return string              The Content to display
43 43
 	 */
44 44
 	public function column_default( $item, $column_name ) {
45
-		return $item[ $column_name ];
45
+		return $item[$column_name];
46 46
 	}
47 47
 
48 48
 	/**
@@ -74,13 +74,13 @@  discard block
 block discarded – undo
74 74
 
75 75
 		$accounts = apply_filters( 'ppp_register_social_service', array() );
76 76
 
77
-		foreach ( $accounts as $account ) {
77
+		foreach ($accounts as $account) {
78 78
 			$data[$account] = array(
79
-				'icon'    => apply_filters( 'ppp_account_list_icon-' . $account, '' ),
80
-				'avatar'  => apply_filters( 'ppp_account_list_avatar-' . $account, '' ),
81
-				'name'    => apply_filters( 'ppp_account_list_name-' . $account, '' ),
82
-				'actions' => apply_filters( 'ppp_account_list_actions-' . $account, '' ),
83
-				'extras'  => apply_filters( 'ppp_account_list_extras-' . $account, '' ),
79
+				'icon'    => apply_filters( 'ppp_account_list_icon-'.$account, '' ),
80
+				'avatar'  => apply_filters( 'ppp_account_list_avatar-'.$account, '' ),
81
+				'name'    => apply_filters( 'ppp_account_list_name-'.$account, '' ),
82
+				'actions' => apply_filters( 'ppp_account_list_actions-'.$account, '' ),
83
+				'extras'  => apply_filters( 'ppp_account_list_extras-'.$account, '' ),
84 84
 			);
85 85
 		}
86 86
 
Please login to merge, or discard this patch.
includes/admin/class-schedule-table.php 2 patches
Switch Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -43,21 +43,21 @@
 block discarded – undo
43 43
 	 */
44 44
 	public function column_default( $item, $column_name ) {
45 45
 		switch ( $column_name ) {
46
-		case 'date':
47
-		case 'post_title':
48
-			return $item[ $column_name ];
49
-		case 'content':
50
-			$content = $item[ $column_name ];
51
-			return $content;
52
-		case 'image':
53
-			if ( ! empty( $item['image_url'] ) ) {
54
-				$content = '<img src="' . $item['image_url'] . '" />';
55
-			} else {
56
-				$content = __( 'None', 'ppp-txt' );
57
-			}
58
-			return $content;
59
-		default:
60
-			return;
46
+			case 'date':
47
+			case 'post_title':
48
+				return $item[ $column_name ];
49
+			case 'content':
50
+				$content = $item[ $column_name ];
51
+				return $content;
52
+			case 'image':
53
+				if ( ! empty( $item['image_url'] ) ) {
54
+					$content = '<img src="' . $item['image_url'] . '" />';
55
+				} else {
56
+					$content = __( 'None', 'ppp-txt' );
57
+				}
58
+				return $content;
59
+			default:
60
+				return;
61 61
 		}
62 62
 	}
63 63
 
Please login to merge, or discard this patch.
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Exit if accessed directly
4
-if ( ! defined( 'ABSPATH' ) ) {
4
+if ( ! defined( 'ABSPATH' )) {
5 5
 	exit;
6 6
 }
7 7
 
8
-if ( ! class_exists( 'WP_List_Table' ) ) {
9
-	require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
8
+if ( ! class_exists( 'WP_List_Table' )) {
9
+	require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php';
10 10
 }
11 11
 
12 12
 /**
@@ -42,16 +42,16 @@  discard block
 block discarded – undo
42 42
 	 * @return string              The Content to display
43 43
 	 */
44 44
 	public function column_default( $item, $column_name ) {
45
-		switch ( $column_name ) {
45
+		switch ($column_name) {
46 46
 		case 'date':
47 47
 		case 'post_title':
48
-			return $item[ $column_name ];
48
+			return $item[$column_name];
49 49
 		case 'content':
50
-			$content = $item[ $column_name ];
50
+			$content = $item[$column_name];
51 51
 			return $content;
52 52
 		case 'image':
53
-			if ( ! empty( $item['image_url'] ) ) {
54
-				$content = '<img src="' . $item['image_url'] . '" />';
53
+			if ( ! empty($item['image_url'])) {
54
+				$content = '<img src="'.$item['image_url'].'" />';
55 55
 			} else {
56 56
 				$content = __( 'None', 'ppp-txt' );
57 57
 			}
@@ -82,15 +82,15 @@  discard block
 block discarded – undo
82 82
 	 * @return string       The HTML to display for this column.
83 83
 	 */
84 84
 	public function column_post_title( $item ) {
85
-		$item_name = $item['name'] . '_' . $item['service'];
85
+		$item_name = $item['name'].'_'.$item['service'];
86 86
 		$actions   = array(
87
-			'edit'          => sprintf( __( '<a href="%s">Edit</a>', 'ppp-txt' ), admin_url( 'post.php?post=' . $item['post_id'] . '&action=edit#ppp_schedule_metabox' ) ),
88
-			'delete'        => sprintf( __( '<a href="%s">Delete</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=delete_item&post_id=' . $item['post_id'] . '&name=' . $item_name . '&index=' . $item['index'] ) ),
89
-			'share'         => sprintf( __( '<a href="%s">Share Now</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=share_now&post_id=' . $item['post_id'] . '&name=' . $item_name ) ),
90
-			'share_delete'  => sprintf( __( '<a href="%s">Share Now & Delete</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=share_now&post_id=' . $item['post_id'] . '&name=' . $item_name . '&index=' . $item['index'] . '&delete_too=true' ) ),
87
+			'edit'          => sprintf( __( '<a href="%s">Edit</a>', 'ppp-txt' ), admin_url( 'post.php?post='.$item['post_id'].'&action=edit#ppp_schedule_metabox' ) ),
88
+			'delete'        => sprintf( __( '<a href="%s">Delete</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=delete_item&post_id='.$item['post_id'].'&name='.$item_name.'&index='.$item['index'] ) ),
89
+			'share'         => sprintf( __( '<a href="%s">Share Now</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=share_now&post_id='.$item['post_id'].'&name='.$item_name ) ),
90
+			'share_delete'  => sprintf( __( '<a href="%s">Share Now & Delete</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=share_now&post_id='.$item['post_id'].'&name='.$item_name.'&index='.$item['index'].'&delete_too=true' ) ),
91 91
 		);
92 92
 
93
-		return sprintf( '<span class="dashicons icon-ppp-' . $item['service'] . '"></span>&nbsp;%1$s %2$s', $item['post_title'], $this->row_actions( $actions ) );
93
+		return sprintf( '<span class="dashicons icon-ppp-'.$item['service'].'"></span>&nbsp;%1$s %2$s', $item['post_title'], $this->row_actions( $actions ) );
94 94
 	}
95 95
 
96 96
 	/**
@@ -99,9 +99,9 @@  discard block
 block discarded – undo
99 99
 	 * @return string       The HTML to display the date
100 100
 	 */
101 101
 	public function column_date( $item ) {
102
-		$date = date_i18n( get_option('date_format') . ' @ ' . get_option('time_format'), $item['date'] );
103
-		if ( $item['conflict'] ) {
104
-			$date .= '<br /><small style="color: red">' . __( 'Warning: Multiple items scheduled at this time.', 'ppp-txt' ) . '</small>';
102
+		$date = date_i18n( get_option( 'date_format' ).' @ '.get_option( 'time_format' ), $item['date'] );
103
+		if ($item['conflict']) {
104
+			$date .= '<br /><small style="color: red">'.__( 'Warning: Multiple items scheduled at this time.', 'ppp-txt' ).'</small>';
105 105
 		}
106 106
 
107 107
 		return $date;
@@ -123,48 +123,48 @@  discard block
 block discarded – undo
123 123
 		$crons = ppp_get_shceduled_crons();
124 124
 
125 125
 		$cron_tally = array();
126
-		foreach ( $crons as $key => $cron ) {
126
+		foreach ($crons as $key => $cron) {
127 127
 			$ppp_data = $cron;
128 128
 			$timestamp = $ppp_data['timestamp'];
129 129
 
130
-			$cron_tally[$timestamp] = isset( $cron_tally[$timestamp] ) ? $cron_tally[$timestamp] + 1 : 1;
130
+			$cron_tally[$timestamp] = isset($cron_tally[$timestamp]) ? $cron_tally[$timestamp] + 1 : 1;
131 131
 
132 132
 			$name_parts = explode( '_', $ppp_data['args'][1] );
133 133
 			$post_id    = $ppp_data['args'][0];
134 134
 			$index      = $name_parts[1];
135
-			$service    = isset( $name_parts[3] ) ? $name_parts[3] : 'tw';
136
-			$builder    = 'ppp_' . $service . '_build_share_message';
137
-			$post_meta  = apply_filters( 'ppp_get_scheduled_items_' . $service, array(), $post_id );
135
+			$service    = isset($name_parts[3]) ? $name_parts[3] : 'tw';
136
+			$builder    = 'ppp_'.$service.'_build_share_message';
137
+			$post_meta  = apply_filters( 'ppp_get_scheduled_items_'.$service, array(), $post_id );
138 138
 			$image_url  = '';
139 139
 
140
-			if ( ! empty( $post_meta[$index]['attachment_id'] ) ) {
141
-				$image_url = ppp_post_has_media( $post_id, $service, true, $post_meta[ $index ]['attachment_id'] );
142
-			} elseif ( ! empty( $post_meta[ $index ]['image'] ) ) {
143
-				$image_url = $post_meta[ $index ]['image'];
140
+			if ( ! empty($post_meta[$index]['attachment_id'])) {
141
+				$image_url = ppp_post_has_media( $post_id, $service, true, $post_meta[$index]['attachment_id'] );
142
+			} elseif ( ! empty($post_meta[$index]['image'])) {
143
+				$image_url = $post_meta[$index]['image'];
144 144
 			}
145 145
 
146
-			$conflict   = $cron_tally[ $timestamp ] > 1 ? true : false;
146
+			$conflict   = $cron_tally[$timestamp] > 1 ? true : false;
147 147
 
148
-			$data[ $key ] = array(
148
+			$data[$key] = array(
149 149
 				'post_id'      => $post_id,
150 150
 				'post_title'   => get_the_title( $post_id ),
151 151
 				'service'      => $service,
152 152
 				'index'        => $index,
153
-				'date'         => $timestamp + ( get_option( 'gmt_offset' ) * 3600 ),
153
+				'date'         => $timestamp + (get_option( 'gmt_offset' ) * 3600),
154 154
 				'content'      => function_exists( $builder ) ? $builder( $post_id, $ppp_data['args'][1], false ) : '',
155
-				'name'         => 'sharedate_' . $index . '_' . $post_id,
155
+				'name'         => 'sharedate_'.$index.'_'.$post_id,
156 156
 				'conflict'     => $conflict,
157 157
 			);
158 158
 
159
-			if ( ! empty( $image_url ) ) {
160
-				$data[ $key ]['image_url'] = $image_url;
159
+			if ( ! empty($image_url)) {
160
+				$data[$key]['image_url'] = $image_url;
161 161
 			}
162 162
 
163
-			$description_function = 'ppp_' . $service . '_get_share_description';
164
-			if ( function_exists( $description_function ) ) {
163
+			$description_function = 'ppp_'.$service.'_get_share_description';
164
+			if (function_exists( $description_function )) {
165 165
 				$description = $description_function( $post_id, $index );
166
-				if ( ! empty( $description ) ) {
167
-					$data[ $key ]['content'] .= '<br />' . $description;
166
+				if ( ! empty($description)) {
167
+					$data[$key]['content'] .= '<br />'.$description;
168 168
 				}
169 169
 			}
170 170
 
@@ -172,9 +172,9 @@  discard block
 block discarded – undo
172 172
 
173 173
 		$total_items = count( $data );
174 174
 
175
-		$offset = isset( $_GET['paged'] ) ? $_GET['paged'] : 1;
175
+		$offset = isset($_GET['paged']) ? $_GET['paged'] : 1;
176 176
 
177
-		$data = array_slice( $data, ( $offset - 1 ) * $per_page, $per_page, true );
177
+		$data = array_slice( $data, ($offset - 1) * $per_page, $per_page, true );
178 178
 		$this->items = $data;
179 179
 
180 180
 
Please login to merge, or discard this patch.
includes/admin/do-upgrades.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( !defined( 'ABSPATH' ) ) exit;
13
+if ( ! defined( 'ABSPATH' )) exit;
14 14
 
15 15
 /**
16 16
  * Render Upgrades Screen
@@ -19,12 +19,12 @@  discard block
 block discarded – undo
19 19
  * @return void
20 20
 */
21 21
 function ppp_upgrades_screen() {
22
-	$action = isset( $_GET['ppp-upgrade'] ) ? sanitize_text_field( $_GET['ppp-upgrade'] ) : '';
23
-	$step   = isset( $_GET['step'] )        ? absint( $_GET['step'] )                     : 1;
24
-	$total  = isset( $_GET['total'] )       ? absint( $_GET['total'] )                    : false;
25
-	$custom = isset( $_GET['custom'] )      ? absint( $_GET['custom'] )                   : 0;
26
-	$number = isset( $_GET['number'] )      ? absint( $_GET['number'] )                   : 100;
27
-	$steps  = round( ( $total / $number ), 0 );
22
+	$action = isset($_GET['ppp-upgrade']) ? sanitize_text_field( $_GET['ppp-upgrade'] ) : '';
23
+	$step   = isset($_GET['step']) ? absint( $_GET['step'] ) : 1;
24
+	$total  = isset($_GET['total']) ? absint( $_GET['total'] ) : false;
25
+	$custom = isset($_GET['custom']) ? absint( $_GET['custom'] ) : 0;
26
+	$number = isset($_GET['number']) ? absint( $_GET['number'] ) : 100;
27
+	$steps  = round( ($total / $number), 0 );
28 28
 
29 29
 	$doing_upgrade_args = array(
30 30
 		'page'        => 'ppp-upgrades',
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	);
37 37
 
38 38
 	update_option( 'ppp_doing_upgrade', $doing_upgrade_args );
39
-	if ( $step > $steps ) {
39
+	if ($step > $steps) {
40 40
 		// Prevent a weird case where the estimate was off. Usually only a couple.
41 41
 		$steps = $step;
42 42
 	}
@@ -44,12 +44,12 @@  discard block
 block discarded – undo
44 44
 	<div class="wrap">
45 45
 		<h1><?php _e( 'Post Promoter Pro - Upgrades', 'ppp-txt' ); ?></h1>
46 46
 
47
-		<?php if( ! empty( $action ) ) : ?>
47
+		<?php if ( ! empty($action)) : ?>
48 48
 
49 49
 			<div id="ppp-upgrade-status">
50 50
 				<p><?php _e( 'The upgrade process has started, please be patient. This could take several minutes. You will be automatically redirected when the upgrade is finished.', 'ppp-txt' ); ?></p>
51 51
 
52
-				<?php if( ! empty( $total ) ) : ?>
52
+				<?php if ( ! empty($total)) : ?>
53 53
 					<p><strong><?php printf( __( 'Step %d of approximately %d running', 'ppp-txt' ), $step, $steps ); ?></strong></p>
54 54
 				<?php endif; ?>
55 55
 			</div>
Please login to merge, or discard this patch.
includes/admin/meta-boxes.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Exit if accessed directly
4
-if ( ! defined( 'ABSPATH' ) ) {
4
+if ( ! defined( 'ABSPATH' )) {
5 5
 	exit;
6 6
 }
7 7
 
@@ -12,11 +12,11 @@  discard block
 block discarded – undo
12 12
 function ppp_register_meta_boxes() {
13 13
 	global $post, $ppp_options;
14 14
 
15
-	if ( !isset( $ppp_options['post_types'] ) || !is_array( $ppp_options['post_types'] ) ) {
15
+	if ( ! isset($ppp_options['post_types']) || ! is_array( $ppp_options['post_types'] )) {
16 16
 		return;
17 17
 	}
18 18
 
19
-	foreach ( $ppp_options['post_types'] as $post_type => $value ) {
19
+	foreach ($ppp_options['post_types'] as $post_type => $value) {
20 20
 		add_meta_box( 'ppp_schedule_metabox', 'Post Promoter Pro', 'ppp_schedule_callback', $post_type, 'normal', 'high' );
21 21
 	}
22 22
 }
Please login to merge, or discard this patch.
includes/admin/welcome.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  */
12 12
 
13 13
 // Exit if accessed directly
14
-if ( ! defined( 'ABSPATH' ) ) {
14
+if ( ! defined( 'ABSPATH' )) {
15 15
 	exit;
16 16
 }
17 17
 
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 	 * @since 1.2
36 36
 	 */
37 37
 	public function __construct() {
38
-		add_action( 'admin_menu', array( $this, 'admin_menus') );
38
+		add_action( 'admin_menu', array( $this, 'admin_menus' ) );
39 39
 		add_action( 'admin_head', array( $this, 'admin_head' ) );
40
-		add_action( 'admin_init', array( $this, 'welcome'    ) );
40
+		add_action( 'admin_init', array( $this, 'welcome' ) );
41 41
 	}
42 42
 
43 43
 	/**
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 		remove_submenu_page( 'index.php', 'ppp-getting-started' );
82 82
 
83 83
 		// Badge for welcome page
84
-		$badge_url = PPP_URL . 'includes/images/ppp-badge.png';
84
+		$badge_url = PPP_URL.'includes/images/ppp-badge.png';
85 85
 		?>
86 86
 		<style type="text/css" media="screen">
87 87
 		/*<![CDATA[*/
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 	 * @return void
122 122
 	 */
123 123
 	public function tabs() {
124
-		$selected = isset( $_GET['page'] ) ? $_GET['page'] : 'ppp-about';
124
+		$selected = isset($_GET['page']) ? $_GET['page'] : 'ppp-about';
125 125
 		?>
126 126
 		<h1 class="nav-tab-wrapper">
127 127
 			<a class="nav-tab <?php echo $selected == 'ppp-about' ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'ppp-about' ), 'index.php' ) ) ); ?>">
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 	 * @return void
140 140
 	 */
141 141
 	public function about_screen() {
142
-		list( $display_version ) = explode( '-', PPP_VERSION );
142
+		list($display_version) = explode( '-', PPP_VERSION );
143 143
 		?>
144 144
 		<div class="wrap about-wrap">
145 145
 			<h1><?php printf( __( 'Post Promoter Pro %s', 'ppp-txt' ), $display_version ); ?></h1>
@@ -149,59 +149,59 @@  discard block
 block discarded – undo
149 149
 			<?php $this->tabs(); ?>
150 150
 
151 151
 			<div class="changelog">
152
-				<h3><?php _e( 'Free Form Tweet Scheduling', 'ppp-txt' );?></h3>
152
+				<h3><?php _e( 'Free Form Tweet Scheduling', 'ppp-txt' ); ?></h3>
153 153
 
154 154
 				<div class="feature-section">
155 155
 
156
-					<img src="<?php echo PPP_URL . '/includes/images/screenshots/free-form-tweets.jpg'; ?>" class="ppp-welcome-screenshots"/>
156
+					<img src="<?php echo PPP_URL.'/includes/images/screenshots/free-form-tweets.jpg'; ?>" class="ppp-welcome-screenshots"/>
157 157
 
158
-					<h4><?php _e( 'More effective, and user friendly.', 'ppp-txt' );?></h4>
159
-					<p><?php _e( 'No longer do you have to figure out what "Day 1" means. With free form scheduling, you can now create Tweets, days, weeks, or months in the future. Even multiples a day.', 'ppp-txt' );?></p>
160
-					<p><?php _e( 'Have an old post that you want to promote again? No problem, just go back and add another Scheduled Tweet to the list!', 'ppp-txt' );?></p>
158
+					<h4><?php _e( 'More effective, and user friendly.', 'ppp-txt' ); ?></h4>
159
+					<p><?php _e( 'No longer do you have to figure out what "Day 1" means. With free form scheduling, you can now create Tweets, days, weeks, or months in the future. Even multiples a day.', 'ppp-txt' ); ?></p>
160
+					<p><?php _e( 'Have an old post that you want to promote again? No problem, just go back and add another Scheduled Tweet to the list!', 'ppp-txt' ); ?></p>
161 161
 
162 162
 				</div>
163 163
 			</div>
164 164
 
165 165
 			<div class="changelog">
166
-				<h3><?php _e( 'Twitter Cards Support', 'ppp-txt' );?></h3>
166
+				<h3><?php _e( 'Twitter Cards Support', 'ppp-txt' ); ?></h3>
167 167
 
168 168
 				<div class="feature-section">
169 169
 
170
-					<img src="<?php echo PPP_URL . '/includes/images/screenshots/twitter-cards.jpg'; ?>" class="ppp-welcome-screenshots"/>
170
+					<img src="<?php echo PPP_URL.'/includes/images/screenshots/twitter-cards.jpg'; ?>" class="ppp-welcome-screenshots"/>
171 171
 
172
-					<h4><?php _e( 'Increased visibility on Twitter','ppp-txt' );?></h4>
173
-					<p><?php _e( 'Enable this feature if you want your Tweets to look the best they can.', 'ppp-txt' );?></p>
174
-					<p><?php _e( 'This is an opt-in setting, so if you have a plugin that already does this, no conflicts will arise upon upgrade.', 'ppp-txt' );?></p>
172
+					<h4><?php _e( 'Increased visibility on Twitter', 'ppp-txt' ); ?></h4>
173
+					<p><?php _e( 'Enable this feature if you want your Tweets to look the best they can.', 'ppp-txt' ); ?></p>
174
+					<p><?php _e( 'This is an opt-in setting, so if you have a plugin that already does this, no conflicts will arise upon upgrade.', 'ppp-txt' ); ?></p>
175 175
 
176 176
 				</div>
177 177
 			</div>
178 178
 
179 179
 			<div class="changelog">
180
-				<h3><?php _e( 'Variable Twitter Images', 'ppp-txt' );?></h3>
180
+				<h3><?php _e( 'Variable Twitter Images', 'ppp-txt' ); ?></h3>
181 181
 
182 182
 				<div class="feature-section">
183 183
 
184
-					<h4><?php _e( 'Change the image attached to each Tweet','ppp-txt' );?></h4>
185
-					<p><?php _e( 'Have a few rotating images you want to use for your scheduled Tweets? No problem, Version 2.2 supports changing this for every scheduled Tweet.', 'ppp-txt' );?></p>
184
+					<h4><?php _e( 'Change the image attached to each Tweet', 'ppp-txt' ); ?></h4>
185
+					<p><?php _e( 'Have a few rotating images you want to use for your scheduled Tweets? No problem, Version 2.2 supports changing this for every scheduled Tweet.', 'ppp-txt' ); ?></p>
186 186
 
187 187
 				</div>
188 188
 			</div>
189 189
 
190 190
 			<div class="changelog">
191
-				<h3><?php _e( 'Additional Updates', 'ppp-txt' );?></h3>
191
+				<h3><?php _e( 'Additional Updates', 'ppp-txt' ); ?></h3>
192 192
 
193 193
 				<div class="feature-section col three-col">
194 194
 					<div>
195
-						<h4><?php _e( 'Updated image sizes', 'ppp-txt' );?></h4>
196
-						<p><?php _e( 'Changed the optimal thumbnail image sizes to meet the 2015 network standards.', 'ppp-txt' );?></p>
195
+						<h4><?php _e( 'Updated image sizes', 'ppp-txt' ); ?></h4>
196
+						<p><?php _e( 'Changed the optimal thumbnail image sizes to meet the 2015 network standards.', 'ppp-txt' ); ?></p>
197 197
 
198
-						<h4><?php _e( 'CSS Updates', 'ppp-txt' );?></h4>
199
-						<p><?php _e( 'Fixed a conflict in the media library CSS.', 'ppp-txt' );?></p>
198
+						<h4><?php _e( 'CSS Updates', 'ppp-txt' ); ?></h4>
199
+						<p><?php _e( 'Fixed a conflict in the media library CSS.', 'ppp-txt' ); ?></p>
200 200
 					</div>
201 201
 
202 202
 					<div class="last-feature">
203
-						<h4><?php _e( 'Improved Facebook Token Refresh', 'ppp-txt' );?></h4>
204
-						<p><?php _e( 'Fixed a bug with the Facebook token refresh resetting the "Post As", dropdown.', 'ppp-txt' );?></p>
203
+						<h4><?php _e( 'Improved Facebook Token Refresh', 'ppp-txt' ); ?></h4>
204
+						<p><?php _e( 'Fixed a bug with the Facebook token refresh resetting the "Post As", dropdown.', 'ppp-txt' ); ?></p>
205 205
 					</div>
206 206
 				</div>
207 207
 			</div>
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 	 * @return void
222 222
 	 */
223 223
 	public function getting_started_screen() {
224
-		list( $display_version ) = explode( '-', PPP_VERSION );
224
+		list($display_version) = explode( '-', PPP_VERSION );
225 225
 		?>
226 226
 		<div class="wrap about-wrap">
227 227
 			<h1><?php printf( __( 'Welcome to Post Promoter Pro %s', 'ppp-txt' ), $display_version ); ?></h1>
@@ -247,12 +247,12 @@  discard block
 block discarded – undo
247 247
 	public function welcome() {
248 248
 
249 249
 		$version_level = explode( '.', PPP_VERSION );
250
-		if ( count( $version_level > 2 ) ) {
250
+		if (count( $version_level > 2 )) {
251 251
 			return;
252 252
 		}
253 253
 
254 254
 		// Bail if no activation redirect
255
-		if ( ! get_transient( '_ppp_activation_redirect' ) ) {
255
+		if ( ! get_transient( '_ppp_activation_redirect' )) {
256 256
 			return;
257 257
 		}
258 258
 
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 		delete_transient( '_ppp_activation_redirect' );
261 261
 
262 262
 		// Bail if activating from network, or bulk
263
-		if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
263
+		if (is_network_admin() || isset($_GET['activate-multi'])) {
264 264
 			return;
265 265
 		}
266 266
 
Please login to merge, or discard this patch.
includes/bitly-functions.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Exit if accessed directly
4
-if ( ! defined( 'ABSPATH' ) ) {
4
+if ( ! defined( 'ABSPATH' )) {
5 5
 	exit;
6 6
 }
7 7
 
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 function ppp_bitly_enabled() {
13 13
 	global $ppp_social_settings;
14 14
 
15
-	if ( isset( $ppp_social_settings['bitly'] ) && !empty( $ppp_social_settings['bitly'] ) ) {
15
+	if (isset($ppp_social_settings['bitly']) && ! empty($ppp_social_settings['bitly'])) {
16 16
 		return true;
17 17
 	}
18 18
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	global $ppp_bitly_oauth, $ppp_social_settings;
38 38
 	?>
39 39
 	<p>
40
-		<?php if ( !ppp_bitly_enabled() ) : ?>
40
+		<?php if ( ! ppp_bitly_enabled()) : ?>
41 41
 		<form autocomplete="off">
42 42
 			<input id="bitly-username" name="ppp-bitly-username" autocomplete="off" type="text" value="" placeholder="Bit.ly Username" size="25" /><br />
43 43
 			<input id="bitly-password" name="ppp-bitly-password" autocomplete="off" type="password" value="" placeholder="Bit.ly Password" size="25" /><br />
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 			<input type="hidden" id="bitly-redirect-url" value="<?php echo admin_url( 'admin.php?page=ppp-social-settings' ); ?>" />
49 49
 		</form>
50 50
 		<?php endif; ?>
51
-		<?php if ( ppp_bitly_enabled() ) : ?>
51
+		<?php if (ppp_bitly_enabled()) : ?>
52 52
 			<div class="ppp-social-profile ppp-bitly-profile">
53 53
 				<img class="ppp-social-icon" src="<?php echo $ppp_social_settings['bitly']['avatar']; ?>" />
54 54
 				<div class="ppp-bitly-info">
@@ -72,15 +72,15 @@  discard block
 block discarded – undo
72 72
 function ppp_disconnect_bitly() {
73 73
 	global $ppp_social_settings;
74 74
 	$ppp_social_settings = get_option( 'ppp_social_settings' );
75
-	if ( isset( $ppp_social_settings['bitly'] ) ) {
76
-		unset( $ppp_social_settings['bitly'] );
75
+	if (isset($ppp_social_settings['bitly'])) {
76
+		unset($ppp_social_settings['bitly']);
77 77
 		update_option( 'ppp_social_settings', $ppp_social_settings );
78 78
 	}
79 79
 }
80 80
 add_action( 'ppp_disconnect-bitly', 'ppp_disconnect_bitly', 10 );
81 81
 
82 82
 function ppp_set_bitly_token_constants( $social_tokens ) {
83
-	if ( !empty( $social_tokens ) && property_exists( $social_tokens, 'bitly' ) ) {
83
+	if ( ! empty($social_tokens) && property_exists( $social_tokens, 'bitly' )) {
84 84
 		define( 'bitly_clientid', $social_tokens->bitly->client_id );
85 85
 		define( 'bitly_secret', $social_tokens->bitly->client_secret );
86 86
 	}
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	$result = $ppp_bitly_oauth->ppp_make_bitly_link( $link );
99 99
 	$result = json_decode( $result, true );
100 100
 
101
-	if ( isset ( $result['status_code'] ) && $result['status_code'] == 200 ) {
101
+	if (isset ($result['status_code']) && $result['status_code'] == 200) {
102 102
 		return $result['data']['url'];
103 103
 	} else {
104 104
 		return $link;
@@ -116,13 +116,13 @@  discard block
 block discarded – undo
116 116
 	$url = 'https://api-ssl.bitly.com/oauth/access_token';
117 117
 	$username = $_POST['username'];
118 118
 	$password = $_POST['password'];
119
-	$headers = array( 'Authorization' => 'Basic ' . base64_encode( bitly_clientid . ':' . bitly_secret ) );
120
-	$body = 'grant_type=password&username=' . $username . '&password=' . $password;
119
+	$headers = array( 'Authorization' => 'Basic '.base64_encode( bitly_clientid.':'.bitly_secret ) );
120
+	$body = 'grant_type=password&username='.$username.'&password='.$password;
121 121
 	$result = wp_remote_post( $url, array( 'headers' => $headers, 'body' => $body ) );
122 122
 	$body = wp_remote_retrieve_body( $result );
123 123
 	$data = json_decode( $body );
124 124
 
125
-	if ( isset( $data->access_token ) ) {
125
+	if (isset($data->access_token)) {
126 126
 		global $ppp_social_settings;
127 127
 		$ppp_social_settings['bitly']['access_token'] = $data->access_token;
128 128
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 
134 134
 		update_option( 'ppp_social_settings', $ppp_social_settings );
135 135
 		echo 1;
136
-	} elseif ( $body == 'INVALID_LOGIN' ) {
136
+	} elseif ($body == 'INVALID_LOGIN') {
137 137
 		echo 'INVALID_LOGIN';
138 138
 	} else {
139 139
 		echo 0;
Please login to merge, or discard this patch.
includes/libs/bitly.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Exit if accessed directly
4
-if ( !defined( 'ABSPATH' ) ) {
4
+if ( ! defined( 'ABSPATH' )) {
5 5
 	exit;
6 6
 }
7 7
 
@@ -11,13 +11,13 @@  discard block
 block discarded – undo
11 11
  * Handles all bitly functions
12 12
  *
13 13
  */
14
-if( !class_exists( 'PPP_Bitly' ) ) {
14
+if ( ! class_exists( 'PPP_Bitly' )) {
15 15
 
16 16
 	class PPP_Bitly {
17 17
 
18 18
 		var $bitly;
19 19
 
20
-		public function __construct(){
20
+		public function __construct() {
21 21
 			ppp_maybe_start_session();
22 22
 		}
23 23
 
@@ -27,20 +27,20 @@  discard block
 block discarded – undo
27 27
 		 * Handles to load twitter class
28 28
 		 */
29 29
 		public function ppp_load_bitly() {
30
-				if( !class_exists( 'Bitly' ) ) {
31
-					require_once ( PPP_PATH . '/includes/libs/bitly/bitly.php' );
30
+				if ( ! class_exists( 'Bitly' )) {
31
+					require_once (PPP_PATH.'/includes/libs/bitly/bitly.php');
32 32
 				}
33 33
 
34 34
 				ppp_set_social_tokens();
35 35
 
36
-				if ( ! defined( 'bitly_clientid' ) || ! defined( 'bitly_secret' ) ) {
36
+				if ( ! defined( 'bitly_clientid' ) || ! defined( 'bitly_secret' )) {
37 37
 					return false;
38 38
 				}
39 39
 
40 40
 				global $ppp_social_settings;
41 41
 
42
-				if ( isset( $ppp_social_settings['bitly'] ) ) {
43
-					if ( !defined( 'bitly_accesstoken' ) ) {
42
+				if (isset($ppp_social_settings['bitly'])) {
43
+					if ( ! defined( 'bitly_accesstoken' )) {
44 44
 						define( 'bitly_accesstoken', $ppp_social_settings['bitly']['access_token'] );
45 45
 					}
46 46
 					$this->bitly = new Bitly( bitly_clientid, bitly_secret, bitly_accesstoken );
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 		public function revoke_access() {
55 55
 			global $ppp_social_settings;
56 56
 
57
-			unset( $ppp_social_settings['bitly'] );
57
+			unset($ppp_social_settings['bitly']);
58 58
 
59 59
 			update_option( 'ppp_social_settings', $ppp_social_settings );
60 60
 		}
@@ -63,12 +63,12 @@  discard block
 block discarded – undo
63 63
 		 * Get auth codes for Bitly
64 64
 		 *
65 65
 		 */
66
-		public function ppp_get_bitly_auth_url () {
66
+		public function ppp_get_bitly_auth_url() {
67 67
 			//load bitly class
68 68
 			$bitly = $this->ppp_load_bitly();
69 69
 
70 70
 			//check bitly class is loaded or not
71
-			if( !$bitly ) {
71
+			if ( ! $bitly) {
72 72
 				return false;
73 73
 			}
74 74
 
@@ -77,13 +77,13 @@  discard block
 block discarded – undo
77 77
 		}
78 78
 
79 79
 		public function ppp_make_bitly_link( $link = null ) {
80
-			if ( empty( $link ) ) {
80
+			if (empty($link)) {
81 81
 				return false;
82 82
 			}
83 83
 
84 84
 			$bitly = $this->ppp_load_bitly();
85 85
 
86
-			if ( !$bitly ) {
86
+			if ( ! $bitly) {
87 87
 				return false;
88 88
 			}
89 89
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 		public function ppp_bitly_user_info() {
94 94
 			$bitly = $this->ppp_load_bitly();
95 95
 
96
-			if ( !$bitly ) {
96
+			if ( ! $bitly) {
97 97
 				return false;
98 98
 			}
99 99
 
Please login to merge, or discard this patch.