Passed
Push — master ( e5c4f5...cb56ad )
by Paul
03:27
created
plugin/Modules/Html/Partials/SiteReviewsForm.php 2 patches
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 				'response' => $this->buildResponse(),
66 66
 				'submit_button' => $this->buildSubmitButton().$this->buildRecaptcha(),
67 67
 			],
68
-		]);
68
+		] );
69 69
 	}
70 70
 
71 71
 	/**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 			'context' => [
78 78
 				'text' => trim( $this->getLoginText().' '.$this->getRegisterText() ),
79 79
 			],
80
-		]);
80
+		] );
81 81
 	}
82 82
 
83 83
 	/**
@@ -86,12 +86,12 @@  discard block
 block discarded – undo
86 86
 	protected function buildRecaptcha()
87 87
 	{
88 88
 		if( !glsr( OptionManager::class )->isRecaptchaEnabled() )return;
89
-		return glsr( Builder::class )->div([
89
+		return glsr( Builder::class )->div( [
90 90
 			'class' => 'glsr-recaptcha-holder',
91 91
 			'data-badge' => glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.position' ),
92
-			'data-sitekey' => sanitize_text_field( glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.key' )),
92
+			'data-sitekey' => sanitize_text_field( glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.key' ) ),
93 93
 			'data-size' => 'invisible',
94
-		]);
94
+		] );
95 95
 	}
96 96
 
97 97
 	/**
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 	 */
100 100
 	protected function buildResponse()
101 101
 	{
102
-		$classes = !empty( $this->errors )
102
+		$classes = !empty($this->errors)
103 103
 			? glsr( StyleValidationDefaults::class )->defaults()['message_error_class']
104 104
 			: '';
105 105
 		return glsr( Template::class )->build( 'templates/form/response', [
@@ -107,8 +107,8 @@  discard block
 block discarded – undo
107 107
 				'class' => $classes,
108 108
 				'message' => wpautop( $this->message ),
109 109
 			],
110
-			'has_errors' => !empty( $this->errors ),
111
-		]);
110
+			'has_errors' => !empty($this->errors),
111
+		] );
112 112
 	}
113 113
 
114 114
 	/**
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 			'context' => [
121 121
 				'text' => __( 'Submit your review', 'site-reviews' ),
122 122
 			],
123
-		]);
123
+		] );
124 124
 	}
125 125
 
126 126
 	/**
@@ -138,14 +138,14 @@  discard block
 block discarded – undo
138 138
 	{
139 139
 		$hiddenFields = $this->getHiddenFields();
140 140
 		$hiddenFields[] = $this->getHoneypotField();
141
-		$fields = $this->normalizeFields( glsr( Form::class )->getFields( 'submission-form' ));
141
+		$fields = $this->normalizeFields( glsr( Form::class )->getFields( 'submission-form' ) );
142 142
 		$paths = array_map( function( $obj ) {
143 143
 			return $obj->field['path'];
144 144
 		}, $hiddenFields );
145 145
 		foreach( $fields as $field ) {
146 146
 			$index = array_search( $field->field['path'], $paths );
147 147
 			if( $index === false )continue;
148
-			unset( $hiddenFields[$index] );
148
+			unset($hiddenFields[$index]);
149 149
 		}
150 150
 		return array_merge( $hiddenFields, $fields );
151 151
 	}
@@ -155,10 +155,10 @@  discard block
 block discarded – undo
155 155
 	 */
156 156
 	protected function getLoginText()
157 157
 	{
158
-		$loginLink = glsr( Builder::class )->a([
159
-			'href' => wp_login_url( strval( get_permalink() )),
158
+		$loginLink = glsr( Builder::class )->a( [
159
+			'href' => wp_login_url( strval( get_permalink() ) ),
160 160
 			'text' => __( 'logged in', 'site-reviews' ),
161
-		]);
161
+		] );
162 162
 		return sprintf( __( 'You must be %s to submit a review.', 'site-reviews' ), $loginLink );
163 163
 	}
164 164
 
@@ -168,10 +168,10 @@  discard block
 block discarded – undo
168 168
 	protected function getRegisterText()
169 169
 	{
170 170
 		if( !get_option( 'users_can_register' ) || glsr( OptionManager::class )->get( 'settings.general.require.login' ) != 'yes' )return;
171
-		$registerLink = glsr( Builder::class )->a([
171
+		$registerLink = glsr( Builder::class )->a( [
172 172
 			'href' => wp_registration_url(),
173 173
 			'text' => __( 'register', 'site-reviews' ),
174
-		]);
174
+		] );
175 175
 		return sprintf( __( 'You may also %s for an account.', 'site-reviews' ), $registerLink );
176 176
 	}
177 177
 
@@ -183,32 +183,32 @@  discard block
 block discarded – undo
183 183
 		$fields = [[
184 184
 			'name' => '_action',
185 185
 			'value' => 'submit-review',
186
-		],[
186
+		], [
187 187
 			'name' => '_counter',
188
-		],[
188
+		], [
189 189
 			'name' => '_nonce',
190 190
 			'value' => wp_create_nonce( 'submit-review' ),
191
-		],[
191
+		], [
192 192
 			'name' => '_post_id',
193 193
 			'value' => get_the_ID(),
194
-		],[
194
+		], [
195 195
 			'name' => '_referer',
196
-			'value' => wp_unslash( filter_input( INPUT_SERVER, 'REQUEST_URI' )),
197
-		],[
196
+			'value' => wp_unslash( filter_input( INPUT_SERVER, 'REQUEST_URI' ) ),
197
+		], [
198 198
 			'name' => 'assign_to',
199 199
 			'value' => $this->args['assign_to'],
200
-		],[
200
+		], [
201 201
 			'name' => 'category',
202 202
 			'value' => $this->args['category'],
203
-		],[
203
+		], [
204 204
 			'name' => 'excluded',
205 205
 			'value' => $this->args['hide'],
206
-		],[
206
+		], [
207 207
 			'name' => 'form_id',
208 208
 			'value' => $this->args['id'],
209 209
 		]];
210 210
 		return array_map( function( $field ) {
211
-			return new Field( wp_parse_args( $field, ['type' => 'hidden'] ));
211
+			return new Field( wp_parse_args( $field, ['type' => 'hidden'] ) );
212 212
 		}, $fields );
213 213
 	}
214 214
 
@@ -217,10 +217,10 @@  discard block
 block discarded – undo
217 217
 	 */
218 218
 	protected function getHoneypotField()
219 219
 	{
220
-		return new Field([
220
+		return new Field( [
221 221
 			'name' => 'gotcha',
222 222
 			'type' => 'honeypot',
223
-		]);
223
+		] );
224 224
 	}
225 225
 
226 226
 	/**
@@ -228,8 +228,8 @@  discard block
 block discarded – undo
228 228
 	 */
229 229
 	protected function normalizeFieldId( Field &$field )
230 230
 	{
231
-		if( empty( $this->args['id'] ) || empty( $field->field['id'] ))return;
232
-		$field->field['id'].= '-'.$this->args['id'];
231
+		if( empty($this->args['id']) || empty($field->field['id']) )return;
232
+		$field->field['id'] .= '-'.$this->args['id'];
233 233
 	}
234 234
 
235 235
 	/**
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
 	 */
238 238
 	protected function normalizeFieldClass( Field &$field )
239 239
 	{
240
-		if( !isset( $field->field['class'] )) {
240
+		if( !isset($field->field['class']) ) {
241 241
 			$field->field['class'] = '';
242 242
 		}
243 243
 		$field->field['class'] = trim( $field->field['class'].' glsr-field-control' );
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 	 */
249 249
 	protected function normalizeFieldErrors( Field &$field )
250 250
 	{
251
-		if( !array_key_exists( $field->field['path'], $this->errors ))return;
251
+		if( !array_key_exists( $field->field['path'], $this->errors ) )return;
252 252
 		$field->field['errors'] = $this->errors[$field->field['path']];
253 253
 	}
254 254
 
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
 	 */
258 258
 	protected function normalizeFieldRequired( Field &$field )
259 259
 	{
260
-		if( !in_array( $field->field['path'], $this->required ))return;
260
+		if( !in_array( $field->field['path'], $this->required ) )return;
261 261
 		$field->field['required'] = true;
262 262
 	}
263 263
 
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 	{
269 269
 		$normalizedFields = [];
270 270
 		foreach( $fields as $field ) {
271
-			if( in_array( $field->field['path'], $this->args['hide'] ))continue;
271
+			if( in_array( $field->field['path'], $this->args['hide'] ) )continue;
272 272
 			$field->field['is_public'] = true;
273 273
 			$this->normalizeFieldClass( $field );
274 274
 			$this->normalizeFieldErrors( $field );
@@ -285,8 +285,8 @@  discard block
 block discarded – undo
285 285
 	 */
286 286
 	protected function normalizeFieldValue( Field &$field )
287 287
 	{
288
-		if( !array_key_exists( $field->field['path'], $this->values ))return;
289
-		if( in_array( $field->field['type'], ['radio', 'checkbox'] )) {
288
+		if( !array_key_exists( $field->field['path'], $this->values ) )return;
289
+		if( in_array( $field->field['type'], ['radio', 'checkbox'] ) ) {
290 290
 			$field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']];
291 291
 		}
292 292
 		else {
Please login to merge, or discard this patch.
Braces   +24 added lines, -8 removed lines patch added patch discarded remove patch
@@ -85,7 +85,9 @@  discard block
 block discarded – undo
85 85
 	 */
86 86
 	protected function buildRecaptcha()
87 87
 	{
88
-		if( !glsr( OptionManager::class )->isRecaptchaEnabled() )return;
88
+		if( !glsr( OptionManager::class )->isRecaptchaEnabled() ) {
89
+			return;
90
+		}
89 91
 		return glsr( Builder::class )->div([
90 92
 			'class' => 'glsr-recaptcha-holder',
91 93
 			'data-badge' => glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.position' ),
@@ -144,7 +146,9 @@  discard block
 block discarded – undo
144 146
 		}, $hiddenFields );
145 147
 		foreach( $fields as $field ) {
146 148
 			$index = array_search( $field->field['path'], $paths );
147
-			if( $index === false )continue;
149
+			if( $index === false ) {
150
+				continue;
151
+			}
148 152
 			unset( $hiddenFields[$index] );
149 153
 		}
150 154
 		return array_merge( $hiddenFields, $fields );
@@ -167,7 +171,9 @@  discard block
 block discarded – undo
167 171
 	 */
168 172
 	protected function getRegisterText()
169 173
 	{
170
-		if( !get_option( 'users_can_register' ) || glsr( OptionManager::class )->get( 'settings.general.require.login' ) != 'yes' )return;
174
+		if( !get_option( 'users_can_register' ) || glsr( OptionManager::class )->get( 'settings.general.require.login' ) != 'yes' ) {
175
+			return;
176
+		}
171 177
 		$registerLink = glsr( Builder::class )->a([
172 178
 			'href' => wp_registration_url(),
173 179
 			'text' => __( 'register', 'site-reviews' ),
@@ -228,7 +234,9 @@  discard block
 block discarded – undo
228 234
 	 */
229 235
 	protected function normalizeFieldId( Field &$field )
230 236
 	{
231
-		if( empty( $this->args['id'] ) || empty( $field->field['id'] ))return;
237
+		if( empty( $this->args['id'] ) || empty( $field->field['id'] )) {
238
+			return;
239
+		}
232 240
 		$field->field['id'].= '-'.$this->args['id'];
233 241
 	}
234 242
 
@@ -248,7 +256,9 @@  discard block
 block discarded – undo
248 256
 	 */
249 257
 	protected function normalizeFieldErrors( Field &$field )
250 258
 	{
251
-		if( !array_key_exists( $field->field['path'], $this->errors ))return;
259
+		if( !array_key_exists( $field->field['path'], $this->errors )) {
260
+			return;
261
+		}
252 262
 		$field->field['errors'] = $this->errors[$field->field['path']];
253 263
 	}
254 264
 
@@ -257,7 +267,9 @@  discard block
 block discarded – undo
257 267
 	 */
258 268
 	protected function normalizeFieldRequired( Field &$field )
259 269
 	{
260
-		if( !in_array( $field->field['path'], $this->required ))return;
270
+		if( !in_array( $field->field['path'], $this->required )) {
271
+			return;
272
+		}
261 273
 		$field->field['required'] = true;
262 274
 	}
263 275
 
@@ -268,7 +280,9 @@  discard block
 block discarded – undo
268 280
 	{
269 281
 		$normalizedFields = [];
270 282
 		foreach( $fields as $field ) {
271
-			if( in_array( $field->field['path'], $this->args['hide'] ))continue;
283
+			if( in_array( $field->field['path'], $this->args['hide'] )) {
284
+				continue;
285
+			}
272 286
 			$field->field['is_public'] = true;
273 287
 			$this->normalizeFieldClass( $field );
274 288
 			$this->normalizeFieldErrors( $field );
@@ -285,7 +299,9 @@  discard block
 block discarded – undo
285 299
 	 */
286 300
 	protected function normalizeFieldValue( Field &$field )
287 301
 	{
288
-		if( !array_key_exists( $field->field['path'], $this->values ))return;
302
+		if( !array_key_exists( $field->field['path'], $this->values )) {
303
+			return;
304
+		}
289 305
 		if( in_array( $field->field['type'], ['radio', 'checkbox'] )) {
290 306
 			$field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']];
291 307
 		}
Please login to merge, or discard this patch.
plugin/Modules/Html/Settings.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	 */
36 36
 	protected function getFieldDefault( array $field )
37 37
 	{
38
-		return isset( $field['default'] )
38
+		return isset($field['default'])
39 39
 			? $field['default']
40 40
 			: '';
41 41
 	}
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	 */
46 46
 	protected function getSettingFields( $path )
47 47
 	{
48
-		return array_filter( $this->settings, function( $key ) use( $path ) {
48
+		return array_filter( $this->settings, function( $key ) use($path) {
49 49
 			return glsr( Helper::class )->startsWith( $path, $key );
50 50
 		}, ARRAY_FILTER_USE_KEY );
51 51
 	}
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 			$field = wp_parse_args( $field, [
61 61
 				'is_setting' => true,
62 62
 				'name' => $name,
63
-			]);
64
-			$rows.= new Field( $this->normalize( $field ));
63
+			] );
64
+			$rows .= new Field( $this->normalize( $field ) );
65 65
 		}
66 66
 		return $rows;
67 67
 	}
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 	 */
73 73
 	protected function getTemplateData( $id )
74 74
 	{
75
-		$fields = $this->getSettingFields( $this->normalizeSettingPath( $id ));
75
+		$fields = $this->getSettingFields( $this->normalizeSettingPath( $id ) );
76 76
 		return [
77 77
 			'context' => [
78 78
 				'rows' => $this->getSettingRows( $fields ),
@@ -86,12 +86,12 @@  discard block
 block discarded – undo
86 86
 	 */
87 87
 	protected function getTemplateDataForAddons( $id )
88 88
 	{
89
-		$fields = $this->getSettingFields( $this->normalizeSettingPath( $id ));
89
+		$fields = $this->getSettingFields( $this->normalizeSettingPath( $id ) );
90 90
 		$settings = glsr( Helper::class )->convertDotNotationArray( $fields );
91 91
 		$settingKeys = array_keys( $settings['settings']['addons'] );
92 92
 		$results = [];
93 93
 		foreach( $settingKeys as $key ) {
94
-			$addonFields = array_filter( $fields, function( $path ) use( $key ) {
94
+			$addonFields = array_filter( $fields, function( $path ) use($key) {
95 95
 				return glsr( Helper::class )->startsWith( 'settings.addons.'.$key, $path );
96 96
 			}, ARRAY_FILTER_USE_KEY );
97 97
 			$results[$key] = $this->getSettingRows( $addonFields );
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	protected function getTemplateDataForLicenses( $id )
110 110
 	{
111
-		$fields = $this->getSettingFields( $this->normalizeSettingPath( $id ));
111
+		$fields = $this->getSettingFields( $this->normalizeSettingPath( $id ) );
112 112
 		ksort( $fields );
113 113
 		return [
114 114
 			'context' => [
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	protected function getTemplateDataForTranslations()
124 124
 	{
125 125
 		$translations = glsr( Translation::class )->renderAll();
126
-		$class = empty( $translations )
126
+		$class = empty($translations)
127 127
 			? 'glsr-hidden'
128 128
 			: '';
129 129
 		return [
@@ -146,9 +146,9 @@  discard block
 block discarded – undo
146 146
 			$path,
147 147
 			glsr( Helper::class )->getPathValue( $path, glsr()->defaults )
148 148
 		);
149
-		if( is_array( $expectedValue )) {
149
+		if( is_array( $expectedValue ) ) {
150 150
 			return is_array( $optionValue )
151
-				? count( array_intersect( $optionValue, $expectedValue )) === 0
151
+				? count( array_intersect( $optionValue, $expectedValue ) ) === 0
152 152
 				: !in_array( $optionValue, $expectedValue );
153 153
 		}
154 154
 		return $optionValue != $expectedValue;
@@ -159,10 +159,10 @@  discard block
 block discarded – undo
159 159
 	 */
160 160
 	protected function isMultiDependency( $path )
161 161
 	{
162
-		if( isset( $this->settings[$path] )) {
162
+		if( isset($this->settings[$path]) ) {
163 163
 			$field = $this->settings[$path];
164
-			return ( $field['type'] == 'checkbox' && !empty( $field['options'] ))
165
-				|| !empty( $field['multiple'] );
164
+			return ($field['type'] == 'checkbox' && !empty($field['options']))
165
+				|| !empty($field['multiple']);
166 166
 		}
167 167
 		return false;
168 168
 	}
@@ -183,17 +183,17 @@  discard block
 block discarded – undo
183 183
 	 */
184 184
 	protected function normalizeDependsOn( array $field )
185 185
 	{
186
-		if( !empty( $field['depends_on'] ) && is_array( $field['depends_on'] )) {
186
+		if( !empty($field['depends_on']) && is_array( $field['depends_on'] ) ) {
187 187
 			$path = key( $field['depends_on'] );
188 188
 			$expectedValue = $field['depends_on'][$path];
189 189
 			$fieldName = glsr( Helper::class )->convertPathToName( $path, OptionManager::databaseKey() );
190
-			if( $this->isMultiDependency( $path )) {
191
-				$fieldName.= '[]';
190
+			if( $this->isMultiDependency( $path ) ) {
191
+				$fieldName .= '[]';
192 192
 			}
193
-			$field['data-depends'] = json_encode([
193
+			$field['data-depends'] = json_encode( [
194 194
 				'name' => $fieldName,
195 195
 				'value' => $expectedValue,
196
-			], JSON_HEX_APOS|JSON_HEX_QUOT );
196
+			], JSON_HEX_APOS | JSON_HEX_QUOT );
197 197
 			$field['is_hidden'] = $this->isFieldHidden( $path, $expectedValue );
198 198
 		}
199 199
 		return $field;
@@ -204,9 +204,9 @@  discard block
 block discarded – undo
204 204
 	 */
205 205
 	protected function normalizeLabelAndLegend( array $field )
206 206
 	{
207
-		if( !empty( $field['label'] )) {
207
+		if( !empty($field['label']) ) {
208 208
 			$field['legend'] = $field['label'];
209
-			unset( $field['label'] );
209
+			unset($field['label']);
210 210
 		}
211 211
 		else {
212 212
 			$field['is_valid'] = false;
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	 */
221 221
 	protected function normalizeValue( array $field )
222 222
 	{
223
-		if( !isset( $field['value'] )) {
223
+		if( !isset($field['value']) ) {
224 224
 			$field['value'] = glsr( OptionManager::class )->get(
225 225
 				$field['name'],
226 226
 				$this->getFieldDefault( $field )
Please login to merge, or discard this patch.
plugin/Controllers/AjaxController.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 	 */
23 23
 	public function routerChangeStatus( array $request )
24 24
 	{
25
-		wp_send_json_success( $this->execute( new ChangeStatus( $request )));
25
+		wp_send_json_success( $this->execute( new ChangeStatus( $request ) ) );
26 26
 	}
27 27
 
28 28
 	/**
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
 	public function routerClearConsole()
32 32
 	{
33 33
 		glsr( AdminController::class )->routerClearConsole();
34
-		wp_send_json_success([
34
+		wp_send_json_success( [
35 35
 			'console' => glsr( Console::class )->get(),
36 36
 			'notices' => glsr( Notice::class )->get(),
37
-		]);
37
+		] );
38 38
 	}
39 39
 
40 40
 	/**
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 	public function routerCountReviews()
44 44
 	{
45 45
 		glsr( AdminController::class )->routerCountReviews();
46
-		wp_send_json_success([
46
+		wp_send_json_success( [
47 47
 			'notices' => glsr( Notice::class )->get(),
48
-		]);
48
+		] );
49 49
 	}
50 50
 
51 51
 	/**
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
 	{
56 56
 		$shortcode = $request['shortcode'];
57 57
 		$response = false;
58
-		if( array_key_exists( $shortcode, glsr()->mceShortcodes )) {
58
+		if( array_key_exists( $shortcode, glsr()->mceShortcodes ) ) {
59 59
 			$data = glsr()->mceShortcodes[$shortcode];
60
-			if( !empty( $data['errors'] )) {
60
+			if( !empty($data['errors']) ) {
61 61
 				$data['btn_okay'] = [esc_html__( 'Okay', 'site-reviews' )];
62 62
 			}
63 63
 			$response = [
@@ -77,10 +77,10 @@  discard block
 block discarded – undo
77 77
 	public function routerFetchConsole()
78 78
 	{
79 79
 		glsr( AdminController::class )->routerFetchConsole();
80
-		wp_send_json_success([
80
+		wp_send_json_success( [
81 81
 			'console' => glsr( Console::class )->get(),
82 82
 			'notices' => glsr( Notice::class )->get(),
83
-		]);
83
+		] );
84 84
 	}
85 85
 
86 86
 	/**
@@ -89,10 +89,10 @@  discard block
 block discarded – undo
89 89
 	public function routerSearchPosts( array $request )
90 90
 	{
91 91
 		$results = glsr( Database::class )->searchPosts( $request['search'] );
92
-		wp_send_json_success([
92
+		wp_send_json_success( [
93 93
 			'empty' => '<div>'.__( 'Nothing found.', 'site-reviews' ).'</div>',
94 94
 			'items' => $results,
95
-		]);
95
+		] );
96 96
 	}
97 97
 
98 98
 	/**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 	 */
101 101
 	public function routerSearchTranslations( array $request )
102 102
 	{
103
-		if( empty( $request['exclude'] )) {
103
+		if( empty($request['exclude']) ) {
104 104
 			$request['exclude'] = [];
105 105
 		}
106 106
 		$results = glsr( Translation::class )
@@ -108,10 +108,10 @@  discard block
 block discarded – undo
108 108
 			->exclude()
109 109
 			->exclude( $request['exclude'] )
110 110
 			->renderResults();
111
-		wp_send_json_success([
111
+		wp_send_json_success( [
112 112
 			'empty' => '<div>'.__( 'Nothing found.', 'site-reviews' ).'</div>',
113 113
 			'items' => $results,
114
-		]);
114
+		] );
115 115
 	}
116 116
 
117 117
 	/**
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 			'errors' => glsr( Session::class )->get( $request['form_id'].'errors', false, true ),
125 125
 			'message' => glsr( Session::class )->get( $request['form_id'].'message', '', true ),
126 126
 			'recaptcha' => glsr( Session::class )->get( $request['form_id'].'recaptcha', false, true ),
127
-			'redirect' => trim( strval( get_post_meta( intval( $request['_post_id'] ), 'redirect_to', true ))),
127
+			'redirect' => trim( strval( get_post_meta( intval( $request['_post_id'] ), 'redirect_to', true ) ) ),
128 128
 		];
129 129
 		if( $data['errors'] === false ) {
130 130
 			glsr( Session::class )->clear();
@@ -138,10 +138,10 @@  discard block
 block discarded – undo
138 138
 	 */
139 139
 	public function routerTogglePinned( array $request )
140 140
 	{
141
-		$isPinned = $this->execute( new TogglePinned( $request ));
142
-		wp_send_json_success([
141
+		$isPinned = $this->execute( new TogglePinned( $request ) );
142
+		wp_send_json_success( [
143 143
 			'notices' => glsr( Notice::class )->get(),
144 144
 			'pinned' => $isPinned,
145
-		]);
145
+		] );
146 146
 	}
147 147
 }
Please login to merge, or discard this patch.
deprecated.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 // Database/ReviewManager.php
6 6
 add_action( 'site-reviews/review/created', function( $review ) {
7
-	if( has_action( 'site-reviews/local/review/create' )) {
7
+	if( has_action( 'site-reviews/local/review/create' ) ) {
8 8
 		glsr()->deprecated[] = 'The "site-reviews/local/review/create" hook has been deprecated. Please use the "site-reviews/review/created" hook instead.';
9 9
 		do_action( 'site-reviews/local/review/create', (array)get_post( $review->ID ), (array)$review, $review->ID );
10 10
 	}
@@ -12,18 +12,18 @@  discard block
 block discarded – undo
12 12
 
13 13
 // Handlers/CreateReview.php
14 14
 add_action( 'site-reviews/review/submitted', function( $review ) {
15
-	if( has_action( 'site-reviews/local/review/submitted' )) {
15
+	if( has_action( 'site-reviews/local/review/submitted' ) ) {
16 16
 		glsr()->deprecated[] = 'The "site-reviews/local/review/submitted" hook has been deprecated. Please use the "site-reviews/review/submitted" hook instead.';
17 17
 		do_action( 'site-reviews/local/review/submitted', null, $review );
18 18
 	}
19
-	if( has_filter( 'site-reviews/local/review/submitted/message' )) {
19
+	if( has_filter( 'site-reviews/local/review/submitted/message' ) ) {
20 20
 		glsr()->deprecated[] = 'The "site-reviews/local/review/submitted/message" hook has been deprecated.';
21 21
 	}
22 22
 }, 9 );
23 23
 
24 24
 // Database/ReviewManager.php
25 25
 add_filter( 'site-reviews/create/review-values', function( $values, $command ) {
26
-	if( has_filter( 'site-reviews/local/review' )) {
26
+	if( has_filter( 'site-reviews/local/review' ) ) {
27 27
 		glsr()->deprecated[] = 'The "site-reviews/local/review" hook has been deprecated. Please use the "site-reviews/create/review-values" hook instead.';
28 28
 		return apply_filters( 'site-reviews/local/review', $values, $command );
29 29
 	}
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
 // Handlers/EnqueuePublicAssets.php
34 34
 add_filter( 'site-reviews/enqueue/public/localize', function( $variables ) {
35
-	if( has_filter( 'site-reviews/enqueue/localize' )) {
35
+	if( has_filter( 'site-reviews/enqueue/localize' ) ) {
36 36
 		glsr()->deprecated[] = 'The "site-reviews/enqueue/localize" hook has been deprecated. Please use the "site-reviews/enqueue/public/localize" hook instead.';
37 37
 		return apply_filters( 'site-reviews/enqueue/localize', $variables );
38 38
 	}
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
 // Modules/Rating.php
43 43
 add_filter( 'site-reviews/rating/average', function( $average ) {
44
-	if( has_filter( 'site-reviews/average/rating' )) {
44
+	if( has_filter( 'site-reviews/average/rating' ) ) {
45 45
 		glsr()->deprecated[] = 'The "site-reviews/average/rating" hook has been deprecated. Please use the "site-reviews/rating/average" hook instead.';
46 46
 	}
47 47
 	return $average;
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
 // Modules/Rating.php
51 51
 add_filter( 'site-reviews/rating/ranking', function( $ranking ) {
52
-	if( has_filter( 'site-reviews/bayesian/ranking' )) {
52
+	if( has_filter( 'site-reviews/bayesian/ranking' ) ) {
53 53
 		glsr()->deprecated[] = 'The "site-reviews/bayesian/ranking" hook has been deprecated. Please use the "site-reviews/rating/ranking" hook instead.';
54 54
 	}
55 55
 	return $ranking;
@@ -57,10 +57,10 @@  discard block
 block discarded – undo
57 57
 
58 58
 // Modules/Html/Partials/SiteReviews.php
59 59
 add_filter( 'site-reviews/review/build/after', function( $renderedFields ) {
60
-	if( has_filter( 'site-reviews/reviews/review/text' )) {
60
+	if( has_filter( 'site-reviews/reviews/review/text' ) ) {
61 61
 		glsr()->deprecated[] = 'The "site-reviews/reviews/review/text" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
62 62
 	}
63
-	if( has_filter( 'site-reviews/reviews/review/title' )) {
63
+	if( has_filter( 'site-reviews/reviews/review/title' ) ) {
64 64
 		glsr()->deprecated[] = 'The "site-reviews/reviews/review/title" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.';
65 65
 	}
66 66
 	return $renderedFields;
@@ -68,26 +68,26 @@  discard block
 block discarded – undo
68 68
 
69 69
 // Modules/Html/Partials/SiteReviews.php
70 70
 add_filter( 'site-reviews/review/build/before', function( $review ) {
71
-	if( has_filter( 'site-reviews/rendered/review' )) {
71
+	if( has_filter( 'site-reviews/rendered/review' ) ) {
72 72
 		glsr()->deprecated[] = 'The "site-reviews/rendered/review" hook has been deprecated. Please either use a custom "review.php" template (refer to the documentation), or use the "site-reviews/review/build/after" hook instead.';
73 73
 	}
74
-	if( has_filter( 'site-reviews/rendered/review/meta/order' )) {
74
+	if( has_filter( 'site-reviews/rendered/review/meta/order' ) ) {
75 75
 		glsr()->deprecated[] = 'The "site-reviews/rendered/review/meta/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
76 76
 	}
77
-	if( has_filter( 'site-reviews/rendered/review/order' )) {
77
+	if( has_filter( 'site-reviews/rendered/review/order' ) ) {
78 78
 		glsr()->deprecated[] = 'The "site-reviews/rendered/review/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).';
79 79
 	}
80
-	if( has_filter( 'site-reviews/rendered/review-form/login-register' )) {
80
+	if( has_filter( 'site-reviews/rendered/review-form/login-register' ) ) {
81 81
 		glsr()->deprecated[] = 'The "site-reviews/rendered/review-form/login-register" hook has been deprecated. Please use a custom "login-register.php" template instead (refer to the documentation).';
82 82
 	}
83
-	if( has_filter( 'site-reviews/reviews/navigation_links' )) {
83
+	if( has_filter( 'site-reviews/reviews/navigation_links' ) ) {
84 84
 		glsr()->deprecated[] = 'The "site-reviews/reviews/navigation_links" hook has been deprecated. Please use a custom "pagination.php" template instead (refer to the documentation).';
85 85
 	}
86 86
 	return $review;
87 87
 }, 9 );
88 88
 
89 89
 add_filter( 'site-reviews/validate/custom', function( $result, $request ) {
90
-	if( has_filter( 'site-reviews/validate/review/submission' )) {
90
+	if( has_filter( 'site-reviews/validate/review/submission' ) ) {
91 91
 		glsr_log()->notice( 'The "site-reviews/validate/review/submission" hook has been deprecated. Please use the "site-reviews/validate/custom" hook instead.' );
92 92
 		return apply_filters( 'site-reviews/validate/review/submission', $result, $request );
93 93
 	}
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 }, 9, 2 );
96 96
 
97 97
 add_filter( 'site-reviews/views/file', function( $file, $view, $data ) {
98
-	if( has_filter( 'site-reviews/addon/views/file' )) {
98
+	if( has_filter( 'site-reviews/addon/views/file' ) ) {
99 99
 		glsr()->deprecated[] = 'The "site-reviews/addon/views/file" hook has been deprecated. Please use the "site-reviews/views/file" hook instead.';
100 100
 		$file = apply_filters( 'site-reviews/addon/views/file', $file, $view, $data );
101 101
 	}
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 }, 9, 3 );
104 104
 
105 105
 add_action( 'wp_footer', function() {
106
-	$notices = array_keys( array_flip( glsr()->deprecated ));
106
+	$notices = array_keys( array_flip( glsr()->deprecated ) );
107 107
 	natsort( $notices );
108 108
 	foreach( $notices as $notice ) {
109 109
 		glsr_log()->notice( $notice );
Please login to merge, or discard this patch.
plugin/Defaults/CreateReviewDefaults.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 			'avatar' => '',
19 19
 			'content' => '',
20 20
 			'custom' => '',
21
-			'date' => get_date_from_gmt( current_time( 'mysql', 1 )),
21
+			'date' => get_date_from_gmt( current_time( 'mysql', 1 ) ),
22 22
 			'email' => '',
23 23
 			'ip_address' => glsr( Helper::class )->getIpAddress(),
24 24
 			'pinned' => false,
Please login to merge, or discard this patch.
views/partials/editor/review.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@  discard block
 block discarded – undo
1 1
 <?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <div id="titlediv">
4
-	<input type="text" id="title" value="<?= $post->post_title ? esc_attr( $post->post_title ) : sprintf( '(%s)', __( 'no title', 'site-reviews' )); ?>" readonly>
4
+	<input type="text" id="title" value="<?= $post->post_title ? esc_attr( $post->post_title ) : sprintf( '(%s)', __( 'no title', 'site-reviews' ) ); ?>" readonly>
5 5
 </div>
6 6
 
7 7
 <div id="contentdiv">
8 8
 	<textarea readonly><?= esc_attr( $post->post_content ); ?></textarea>
9 9
 </div>
10 10
 
11
-<?php if( empty( $response ))return; ?>
11
+<?php if( empty($response) )return; ?>
12 12
 
13 13
 <div class="postbox glsr-response-postbox">
14 14
 	<button type="button" class="handlediv" aria-expanded="true">
@@ -19,6 +19,6 @@  discard block
 block discarded – undo
19 19
 		<span><?= __( 'Public Response', 'site-reviews' ); ?></span>
20 20
 	</h2>
21 21
 	<div class="inside">
22
-		<?= wpautop( esc_attr( $response )); ?>
22
+		<?= wpautop( esc_attr( $response ) ); ?>
23 23
 	</div>
24 24
 </div>
Please login to merge, or discard this patch.
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,10 @@
 block discarded – undo
8 8
 	<textarea readonly><?= esc_attr( $post->post_content ); ?></textarea>
9 9
 </div>
10 10
 
11
-<?php if( empty( $response ))return; ?>
11
+<?php if( empty( $response )) {
12
+	return;
13
+}
14
+?>
12 15
 
13 16
 <div class="postbox glsr-response-postbox">
14 17
 	<button type="button" class="handlediv" aria-expanded="true">
Please login to merge, or discard this patch.
plugin/Modules/Polylang.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@  discard block
 block discarded – undo
13 13
 	public function getPost( $postId )
14 14
 	{
15 15
 		$postId = trim( $postId );
16
-		if( empty( $postId ) || !is_numeric( $postId ))return;
16
+		if( empty($postId) || !is_numeric( $postId ) )return;
17 17
 		if( $this->isEnabled() ) {
18
-			$polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() ));
18
+			$polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() ) );
19 19
 		}
20
-		if( !empty( $polylangPostId )) {
20
+		if( !empty($polylangPostId) ) {
21 21
 			$postId = $polylangPostId;
22 22
 		}
23
-		return get_post( intval( $postId ));
23
+		return get_post( intval( $postId ) );
24 24
 	}
25 25
 
26 26
 	/**
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 		foreach( $this->cleanIds( $postIds ) as $postId ) {
36 36
 			$newPostIds = array_merge(
37 37
 				$newPostIds,
38
-				array_values( pll_get_post_translations( $postId ))
38
+				array_values( pll_get_post_translations( $postId ) )
39 39
 			);
40 40
 		}
41 41
 		return $this->cleanIds( $newPostIds );
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	 */
76 76
 	protected function cleanIds( array $postIds )
77 77
 	{
78
-		return array_filter( array_unique( $postIds ));
78
+		return array_filter( array_unique( $postIds ) );
79 79
 	}
80 80
 }
81 81
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,9 @@
 block discarded – undo
13 13
 	public function getPost( $postId )
14 14
 	{
15 15
 		$postId = trim( $postId );
16
-		if( empty( $postId ) || !is_numeric( $postId ))return;
16
+		if( empty( $postId ) || !is_numeric( $postId )) {
17
+			return;
18
+		}
17 19
 		if( $this->isEnabled() ) {
18 20
 			$polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() ));
19 21
 		}
Please login to merge, or discard this patch.
plugin/Controllers/Controller.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 	 */
16 16
 	public function download( $filename, $content )
17 17
 	{
18
-		if( !current_user_can( glsr()->constant( 'CAPABILITY' )))return;
18
+		if( !current_user_can( glsr()->constant( 'CAPABILITY' ) ) )return;
19 19
 		nocache_headers();
20 20
 		header( 'Content-Type: text/plain' );
21 21
 		header( 'Content-Disposition: attachment; filename="'.$filename.'"' );
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
 	 */
31 31
 	public function execute( $command )
32 32
 	{
33
-		$handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command ));
34
-		if( !class_exists( $handlerClass )) {
33
+		$handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command ) );
34
+		if( !class_exists( $handlerClass ) ) {
35 35
 			throw new InvalidArgumentException( 'Handler '.$handlerClass.' not found.' );
36 36
 		}
37 37
 		try {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 		}
40 40
 		catch( Exception $e ) {
41 41
 			status_header( 400 );
42
-			glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() ));
42
+			glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() ) );
43 43
 			glsr_log()->error( $e->getMessage() );
44 44
 		}
45 45
 	}
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 */
50 50
 	protected function getPostId()
51 51
 	{
52
-		return intval( filter_input( INPUT_GET, 'post' ));
52
+		return intval( filter_input( INPUT_GET, 'post' ) );
53 53
 	}
54 54
 
55 55
 	/**
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,9 @@
 block discarded – undo
15 15
 	 */
16 16
 	public function download( $filename, $content )
17 17
 	{
18
-		if( !current_user_can( glsr()->constant( 'CAPABILITY' )))return;
18
+		if( !current_user_can( glsr()->constant( 'CAPABILITY' ))) {
19
+			return;
20
+		}
19 21
 		nocache_headers();
20 22
 		header( 'Content-Type: text/plain' );
21 23
 		header( 'Content-Disposition: attachment; filename="'.$filename.'"' );
Please login to merge, or discard this patch.
plugin/Controllers/MenuController.php 2 patches
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,9 @@  discard block
 block discarded – undo
22 22
 	{
23 23
 		global $menu, $typenow;
24 24
 		foreach( $menu as $key => $value ) {
25
-			if( !isset( $value[2] ) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue;
25
+			if( !isset( $value[2] ) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE ) {
26
+				continue;
27
+			}
26 28
 			$postCount = wp_count_posts( Application::POST_TYPE );
27 29
 			$pendingCount = glsr( Builder::class )->span( number_format_i18n( $postCount->pending ), [
28 30
 				'class' => 'pending-count',
@@ -53,7 +55,9 @@  discard block
 block discarded – undo
53 55
 		foreach( $pages as $slug => $title ) {
54 56
 			$method = glsr( Helper::class )->buildMethodName( 'render-'.$slug.'-menu' );
55 57
 			$callback = apply_filters( 'site-reviews/addon/submenu/callback', [$this, $method], $slug );
56
-			if( !is_callable( $callback ))continue;
58
+			if( !is_callable( $callback )) {
59
+				continue;
60
+			}
57 61
 			add_submenu_page( 'edit.php?post_type='.Application::POST_TYPE, $title, $title, glsr()->constant( 'CAPABILITY' ), $slug, $callback );
58 62
 		}
59 63
 	}
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -22,17 +22,17 @@  discard block
 block discarded – undo
22 22
 	{
23 23
 		global $menu, $typenow;
24 24
 		foreach( $menu as $key => $value ) {
25
-			if( !isset( $value[2] ) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue;
25
+			if( !isset($value[2]) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue;
26 26
 			$postCount = wp_count_posts( Application::POST_TYPE );
27 27
 			$pendingCount = glsr( Builder::class )->span( number_format_i18n( $postCount->pending ), [
28 28
 				'class' => 'pending-count',
29
-			]);
29
+			] );
30 30
 			$awaitingModeration = glsr( Builder::class )->span( $pendingCount, [
31 31
 				'class' => 'awaiting-mod count-'.$postCount->pending,
32
-			]);
32
+			] );
33 33
 			$menu[$key][0] .= ' '.$awaitingModeration;
34 34
 			if( $typenow === Application::POST_TYPE ) {
35
-				$menu[$key][4].= ' current';
35
+				$menu[$key][4] .= ' current';
36 36
 			}
37 37
 			break;
38 38
 		}
@@ -49,11 +49,11 @@  discard block
 block discarded – undo
49 49
 			'tools' => __( 'Tools', 'site-reviews' ),
50 50
 			'addons' => __( 'Add-ons', 'site-reviews' ),
51 51
 			'documentation' => __( 'Documentation', 'site-reviews' ),
52
-		]);
52
+		] );
53 53
 		foreach( $pages as $slug => $title ) {
54 54
 			$method = glsr( Helper::class )->buildMethodName( 'render-'.$slug.'-menu' );
55 55
 			$callback = apply_filters( 'site-reviews/addon/submenu/callback', [$this, $method], $slug );
56
-			if( !is_callable( $callback ))continue;
56
+			if( !is_callable( $callback ) )continue;
57 57
 			add_submenu_page( 'edit.php?post_type='.Application::POST_TYPE, $title, $title, glsr()->constant( 'CAPABILITY' ), $slug, $callback );
58 58
 		}
59 59
 	}
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 	{
68 68
 		$this->renderPage( 'addons', [
69 69
 			'template' => glsr( Template::class ),
70
-		]);
70
+		] );
71 71
 	}
72 72
 
73 73
 	/**
@@ -84,16 +84,16 @@  discard block
 block discarded – undo
84 84
 			'hooks' => __( 'Hooks', 'site-reviews' ),
85 85
 			'functions' => __( 'Functions', 'site-reviews' ),
86 86
 			'addons' => __( 'Addons', 'site-reviews' ),
87
-		]);
87
+		] );
88 88
 		$addons = apply_filters( 'site-reviews/addon/documentation', [] );
89 89
 		ksort( $addons );
90
-		if( empty( $addons )) {
91
-			unset( $tabs['addons'] );
90
+		if( empty($addons) ) {
91
+			unset($tabs['addons']);
92 92
 		}
93 93
 		$this->renderPage( 'documentation', [
94 94
 			'addons' => $addons,
95 95
 			'tabs' => $tabs,
96
-		]);
96
+		] );
97 97
 	}
98 98
 
99 99
 	/**
@@ -111,18 +111,18 @@  discard block
 block discarded – undo
111 111
 			'translations' => __( 'Translations', 'site-reviews' ),
112 112
 			'addons' => __( 'Addons', 'site-reviews' ),
113 113
 			'licenses' => __( 'Licenses', 'site-reviews' ),
114
-		]);
115
-		if( empty( glsr( Helper::class )->getPathValue( 'settings.addons', glsr()->defaults ))) {
116
-			unset( $tabs['addons'] );
114
+		] );
115
+		if( empty(glsr( Helper::class )->getPathValue( 'settings.addons', glsr()->defaults )) ) {
116
+			unset($tabs['addons']);
117 117
 		}
118
-		if( empty( glsr( Helper::class )->getPathValue( 'settings.licenses', glsr()->defaults ))) {
119
-			unset( $tabs['licenses'] );
118
+		if( empty(glsr( Helper::class )->getPathValue( 'settings.licenses', glsr()->defaults )) ) {
119
+			unset($tabs['licenses']);
120 120
 		}
121 121
 		$this->renderPage( 'settings', [
122 122
 			'notices' => $this->getNotices(),
123 123
 			'settings' => glsr( Settings::class ),
124 124
 			'tabs' => $tabs,
125
-		]);
125
+		] );
126 126
 	}
127 127
 
128 128
 	/**
@@ -137,24 +137,24 @@  discard block
 block discarded – undo
137 137
 			'sync' => __( 'Sync Reviews', 'site-reviews' ),
138 138
 			'console' => __( 'Console', 'site-reviews' ),
139 139
 			'system-info' => __( 'System Info', 'site-reviews' ),
140
-		]);
141
-		if( !apply_filters( 'site-reviews/addon/sync/enable', false )) {
142
-			unset( $tabs['sync'] );
140
+		] );
141
+		if( !apply_filters( 'site-reviews/addon/sync/enable', false ) ) {
142
+			unset($tabs['sync']);
143 143
 		}
144 144
 		$this->renderPage( 'tools', [
145 145
 			'data' => [
146 146
 				'context' => [
147 147
 					'base_url' => admin_url( 'edit.php?post_type='.Application::POST_TYPE ),
148
-					'console' => strval( glsr( Console::class )),
148
+					'console' => strval( glsr( Console::class ) ),
149 149
 					'id' => Application::ID,
150
-					'system' => strval( glsr( System::class )),
150
+					'system' => strval( glsr( System::class ) ),
151 151
 				],
152 152
 				'services' => apply_filters( 'site-reviews/addon/sync/services', [] ),
153 153
 			],
154 154
 			'notices' => $this->getNotices(),
155 155
 			'tabs' => $tabs,
156 156
 			'template' => glsr( Template::class ),
157
-		]);
157
+		] );
158 158
 	}
159 159
 
160 160
 	/**
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 	{
176 176
 		return glsr( Builder::class )->div( glsr( Notice::class )->get(), [
177 177
 			'id' => 'glsr-notices',
178
-		]);
178
+		] );
179 179
 	}
180 180
 
181 181
 	/**
Please login to merge, or discard this patch.