Completed
Push — master ( 9bbfca...6621c7 )
by J.D.
03:38
created
src/components/points/admin/includes/functions.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -246,9 +246,9 @@
 block discarded – undo
246 246
 			}
247 247
 
248 248
 			$screen_options = '<p><a id="access-on" href="' . esc_url( wp_nonce_url( $url, 'wordpoints_points_hooks_accessiblity', 'wordpoints-accessiblity-nonce' ) ) . '&amp;accessibility-mode=on">'
249
-			                  . esc_html__( 'Enable accessibility mode', 'wordpoints' )
250
-			                  . '</a><a id="access-off" href="' . esc_url( wp_nonce_url( $url, 'wordpoints_points_hooks_accessiblity', 'wordpoints-accessiblity-nonce' ) ) . '&amp;accessibility-mode=off">'
251
-			                  . esc_html__( 'Disable accessibility mode', 'wordpoints' ) . "</a></p>\n";
249
+							  . esc_html__( 'Enable accessibility mode', 'wordpoints' )
250
+							  . '</a><a id="access-off" href="' . esc_url( wp_nonce_url( $url, 'wordpoints_points_hooks_accessiblity', 'wordpoints-accessiblity-nonce' ) ) . '&amp;accessibility-mode=off">'
251
+							  . esc_html__( 'Disable accessibility mode', 'wordpoints' ) . "</a></p>\n";
252 252
 			break;
253 253
 	}
254 254
 
Please login to merge, or discard this patch.
src/classes/entity/restriction/legacy.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,9 +65,9 @@
 block discarded – undo
65 65
 				__METHOD__
66 66
 				, '2.2.0'
67 67
 				, esc_html( get_class( $this->entity ) )
68
-				    . ' implements the WordPoints_Entity_Restricted_VisibilityI'
69
-				    . ' interface, which has been deprecated. Use the entity'
70
-				    . ' restrictions API instead.'
68
+					. ' implements the WordPoints_Entity_Restricted_VisibilityI'
69
+					. ' interface, which has been deprecated. Use the entity'
70
+					. ' restrictions API instead.'
71 71
 			);
72 72
 
73 73
 			$this->restricted_entity = $this->entity;
Please login to merge, or discard this patch.
src/includes/class-un-installer.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,8 +75,8 @@
 block discarded – undo
75 75
 			'options' => array(
76 76
 				'wordpoints_sitewide_active_modules',
77 77
 				'wordpoints_network_install_skipped',
78
-		        'wordpoints_network_installed',
79
-		        'wordpoints_network_update_skipped',
78
+				'wordpoints_network_installed',
79
+				'wordpoints_network_update_skipped',
80 80
 				'wordpoints_breaking_deactivated_modules',
81 81
 			),
82 82
 		),
Please login to merge, or discard this patch.
src/admin/classes/ajax/hooks.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 	) {
101 101
 
102 102
 		return 'wordpoints_create_hook_reaction|' . $reaction_store->get_slug()
103
-		       . '|' . wordpoints_hooks()->get_current_mode()
104
-		       . '|' . wp_json_encode( $reaction_store->get_context_id() );
103
+			   . '|' . wordpoints_hooks()->get_current_mode()
104
+			   . '|' . wp_json_encode( $reaction_store->get_context_id() );
105 105
 	}
106 106
 
107 107
 	/**
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 		WordPoints_Hook_ReactionI $reaction
132 132
 	) {
133 133
 		return 'wordpoints_update_hook_reaction|'
134
-		       . wp_json_encode( $reaction->get_guid() );
134
+			   . wp_json_encode( $reaction->get_guid() );
135 135
 	}
136 136
 
137 137
 	/**
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 		WordPoints_Hook_ReactionI $reaction
162 162
 	) {
163 163
 		return 'wordpoints_delete_hook_reaction|'
164
-		       . wp_json_encode( $reaction->get_guid() );
164
+			   . wp_json_encode( $reaction->get_guid() );
165 165
 	}
166 166
 
167 167
 	//
Please login to merge, or discard this patch.