Passed
Push — master ( f2f23d...b1d360 )
by Paul
04:12
created
plugin/Blocks/SiteReviewsFormBlock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,8 +73,8 @@
 block discarded – undo
73 73
 		add_filter( 'site-reviews/rendered/field', function( $html, $type, $args ) {
74 74
 			if( $args['path'] == 'rating' ) {
75 75
 				$stars = '<span class="glsr-stars">';
76
-				$stars.= str_repeat( '<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5 );
77
-				$stars.= '</span>';
76
+				$stars .= str_repeat( '<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5 );
77
+				$stars .= '</span>';
78 78
 				$html = preg_replace( '/(.*)(<select.*)(<\/select>)(.*)/', '$1'.$stars.'$4', $html );
79 79
 			}
80 80
 			return $html;
Please login to merge, or discard this patch.
plugin/Blocks/BlockGenerator.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,14 +19,14 @@
 block discarded – undo
19 19
 	 */
20 20
 	public function register( $block )
21 21
 	{
22
-		if( !function_exists( 'register_block_type' ))return;
22
+		if( !function_exists( 'register_block_type' ) )return;
23 23
 		register_block_type( Application::ID.'/'.$block, [
24 24
 			'attributes' => $this->attributes(),
25 25
 			'editor_script' => Application::ID.'/blocks',
26 26
 			'editor_style' => Application::ID.'/blocks',
27 27
 			'render_callback' => [$this, 'render'],
28 28
 			'style' => Application::ID,
29
-		]);
29
+		] );
30 30
 	}
31 31
 
32 32
 	/**
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,9 @@
 block discarded – undo
19 19
 	 */
20 20
 	public function register( $block )
21 21
 	{
22
-		if( !function_exists( 'register_block_type' ))return;
22
+		if( !function_exists( 'register_block_type' )) {
23
+			return;
24
+		}
23 25
 		register_block_type( Application::ID.'/'.$block, [
24 26
 			'attributes' => $this->attributes(),
25 27
 			'editor_script' => Application::ID.'/blocks',
Please login to merge, or discard this patch.
plugin/Controllers/BlocksController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,8 +79,8 @@
 block discarded – undo
79 79
 		foreach( $blocks as $block ) {
80 80
 			$id = str_replace( '_reviews', '', Application::ID.'_'.$block );
81 81
 			$blockClass = glsr( Helper::class )->buildClassName( $id.'-block', 'Blocks' );
82
-			if( !class_exists( $blockClass )) {
83
-				glsr_log()->error( sprintf( 'Class missing (%s)', $blockClass ));
82
+			if( !class_exists( $blockClass ) ) {
83
+				glsr_log()->error( sprintf( 'Class missing (%s)', $blockClass ) );
84 84
 				continue;
85 85
 			}
86 86
 			glsr( $blockClass )->register( $block );
Please login to merge, or discard this patch.
plugin/Controllers/EditorController.php 2 patches
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -129,13 +129,13 @@  discard block
 block discarded – undo
129 129
 	 */
130 130
 	public function renderAssignedToMetabox( WP_Post $post )
131 131
 	{
132
-		if( !$this->isReviewPostType( $post ))return;
132
+		if( !$this->isReviewPostType( $post ) )return;
133 133
 		$assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true );
134 134
 		wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false );
135 135
 		glsr()->render( 'partials/editor/metabox-assigned-to', [
136 136
 			'id' => $assignedTo,
137 137
 			'template' => $this->buildAssignedToTemplate( $assignedTo, $post ),
138
-		]);
138
+		] );
139 139
 	}
140 140
 
141 141
 	/**
@@ -144,12 +144,12 @@  discard block
 block discarded – undo
144 144
 	 */
145 145
 	public function renderDetailsMetaBox( WP_Post $post )
146 146
 	{
147
-		if( !$this->isReviewPostType( $post ))return;
147
+		if( !$this->isReviewPostType( $post ) )return;
148 148
 		$review = glsr( ReviewManager::class )->single( $post );
149 149
 		glsr()->render( 'partials/editor/metabox-details', [
150 150
 			'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ),
151 151
 			'metabox' => $this->normalizeDetailsMetaBox( $review ),
152
-		]);
152
+		] );
153 153
 	}
154 154
 
155 155
 	/**
@@ -158,14 +158,14 @@  discard block
 block discarded – undo
158 158
 	 */
159 159
 	public function renderPinnedInPublishMetaBox()
160 160
 	{
161
-		if( !$this->isReviewPostType( get_post() ))return;
161
+		if( !$this->isReviewPostType( get_post() ) )return;
162 162
 		glsr( Template::class )->render( 'partials/editor/pinned', [
163 163
 			'context' => [
164 164
 				'no' => __( 'No', 'site-reviews' ),
165 165
 				'yes' => __( 'Yes', 'site-reviews' ),
166 166
 			],
167
-			'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true )),
168
-		]);
167
+			'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true ) ),
168
+		] );
169 169
 	}
170 170
 
171 171
 	/**
@@ -174,11 +174,11 @@  discard block
 block discarded – undo
174 174
 	 */
175 175
 	public function renderResponseMetaBox( WP_Post $post )
176 176
 	{
177
-		if( !$this->isReviewPostType( $post ))return;
177
+		if( !$this->isReviewPostType( $post ) )return;
178 178
 		wp_nonce_field( 'response', '_nonce-response', false );
179 179
 		glsr()->render( 'partials/editor/metabox-response', [
180 180
 			'response' => get_post_meta( $post->ID, 'response', true ),
181
-		]);
181
+		] );
182 182
 	}
183 183
 
184 184
 	/**
@@ -187,11 +187,11 @@  discard block
 block discarded – undo
187 187
 	 */
188 188
 	public function renderReviewEditor( WP_Post $post )
189 189
 	{
190
-		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return;
190
+		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return;
191 191
 		glsr()->render( 'partials/editor/review', [
192 192
 			'post' => $post,
193 193
 			'response' => get_post_meta( $post->ID, 'response', true ),
194
-		]);
194
+		] );
195 195
 	}
196 196
 
197 197
 	/**
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
 		$screen = glsr_current_screen();
204 204
 		if( $screen->base != 'post' || $screen->post_type != Application::POST_TYPE )return;
205 205
 		add_action( 'edit_form_after_title', [$this, 'renderReviewEditor'] );
206
-		add_action( 'edit_form_top',         [$this, 'renderReviewNotice'] );
206
+		add_action( 'edit_form_top', [$this, 'renderReviewNotice'] );
207 207
 	}
208 208
 
209 209
 	/**
@@ -212,16 +212,16 @@  discard block
 block discarded – undo
212 212
 	 */
213 213
 	public function renderReviewNotice( WP_Post $post )
214 214
 	{
215
-		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return;
215
+		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return;
216 216
 		glsr( Notice::class )->addWarning( sprintf(
217 217
 			__( '%s reviews are read-only.', 'site-reviews' ),
218 218
 			glsr( Columns::class )->buildColumnReviewType( $post->ID )
219
-		));
219
+		) );
220 220
 		glsr( Template::class )->render( 'partials/editor/notice', [
221 221
 			'context' => [
222 222
 				'notices' => glsr( Notice::class )->get(),
223 223
 			],
224
-		]);
224
+		] );
225 225
 	}
226 226
 
227 227
 	/**
@@ -231,12 +231,12 @@  discard block
 block discarded – undo
231 231
 	 */
232 232
 	public function renderTaxonomyMetabox( WP_Post $post )
233 233
 	{
234
-		if( !$this->isReviewPostType( $post ))return;
234
+		if( !$this->isReviewPostType( $post ) )return;
235 235
 		glsr()->render( 'partials/editor/metabox-categories', [
236 236
 			'post' => $post,
237 237
 			'tax_name' => Application::TAXONOMY,
238 238
 			'taxonomy' => get_taxonomy( Application::TAXONOMY ),
239
-		]);
239
+		] );
240 240
 	}
241 241
 
242 242
 	/**
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 	 */
247 247
 	public function revertReview()
248 248
 	{
249
-		check_admin_referer( 'revert-review_'.( $postId = $this->getPostId() ));
249
+		check_admin_referer( 'revert-review_'.($postId = $this->getPostId()) );
250 250
 		glsr( ReviewManager::class )->revert( $postId );
251 251
 		$this->redirect( $postId, 52 );
252 252
 	}
@@ -269,13 +269,13 @@  discard block
 block discarded – undo
269 269
 	protected function buildAssignedToTemplate( $assignedTo, WP_Post $post )
270 270
 	{
271 271
 		$assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo );
272
-		if( !( $assignedPost instanceof WP_Post ))return;
272
+		if( !($assignedPost instanceof WP_Post) )return;
273 273
 		return glsr( Template::class )->build( 'partials/editor/assigned-post', [
274 274
 			'context' => [
275 275
 				'data.url' => (string)get_permalink( $assignedPost ),
276 276
 				'data.title' => get_the_title( $assignedPost ),
277 277
 			],
278
-		]);
278
+		] );
279 279
 	}
280 280
 
281 281
 	/**
@@ -299,13 +299,13 @@  discard block
 block discarded – undo
299 299
 				'class' => 'button button-large',
300 300
 				'href' => $revertUrl,
301 301
 				'id' => 'revert',
302
-			]);
302
+			] );
303 303
 		}
304 304
 		return glsr( Builder::class )->button( __( 'Nothing to Revert', 'site-reviews' ), [
305 305
 			'class' => 'button button-large',
306 306
 			'disabled' => true,
307 307
 			'id' => 'revert',
308
-		]);
308
+		] );
309 309
 	}
310 310
 
311 311
 	/**
@@ -318,11 +318,11 @@  discard block
 block discarded – undo
318 318
 		$reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes )
319 319
 			? glsr()->reviewTypes[$review->review_type]
320 320
 			: __( 'Unknown', 'site-reviews' );
321
-		if( !empty( $review->url )) {
321
+		if( !empty($review->url) ) {
322 322
 			$reviewType = glsr( Builder::class )->a( $reviewType, [
323 323
 				'href' => $review->url,
324 324
 				'target' => '_blank',
325
-			]);
325
+			] );
326 326
 		}
327 327
 		return $reviewType;
328 328
 	}
@@ -351,16 +351,16 @@  discard block
 block discarded – undo
351 351
 	 */
352 352
 	protected function normalizeDetailsMetaBox( Review $review )
353 353
 	{
354
-		$user = empty( $review->user_id )
354
+		$user = empty($review->user_id)
355 355
 			? __( 'Unregistered user', 'site-reviews' )
356 356
 			: glsr( Builder::class )->a( get_the_author_meta( 'display_name', $review->user_id ), [
357 357
 				'href' => get_author_posts_url( $review->user_id ),
358
-			]);
359
-		$email = empty( $review->email )
358
+			] );
359
+		$email = empty($review->email)
360 360
 			? '&mdash;'
361 361
 			: glsr( Builder::class )->a( $review->email, [
362 362
 				'href' => 'mailto:'.$review->email.'?subject='.esc_attr( __( 'RE:', 'site-reviews' ).' '.$review->title ),
363
-			]);
363
+			] );
364 364
 		$metabox = [
365 365
 			__( 'Rating', 'site-reviews' ) => glsr( Partial::class )->build( 'star-rating', ['rating' => $review->rating] ),
366 366
 			__( 'Type', 'site-reviews' ) => $this->getReviewType( $review ),
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
 			__( 'IP Address', 'site-reviews' ) => $review->ip_address,
372 372
 			__( 'Avatar', 'site-reviews' ) => sprintf( '<img src="%s" width="96">', $review->avatar ),
373 373
 		];
374
-		return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review ));
374
+		return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review ) );
375 375
 	}
376 376
 
377 377
 	/**
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 		$redirectUri = $hasReferer
389 389
 			? remove_query_arg( ['deleted', 'ids', 'trashed', 'untrashed'], $referer )
390 390
 			: get_edit_post_link( $postId );
391
-		wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri ));
391
+		wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri ) );
392 392
 		exit;
393 393
 	}
394 394
 }
Please login to merge, or discard this patch.
Braces   +33 added lines, -11 removed lines patch added patch discarded remove patch
@@ -91,7 +91,9 @@  discard block
 block discarded – undo
91 91
 	{
92 92
 		add_meta_box( Application::ID.'_assigned_to', __( 'Assigned To', 'site-reviews' ), [$this, 'renderAssignedToMetabox'], null, 'side' );
93 93
 		add_meta_box( Application::ID.'_review', __( 'Details', 'site-reviews' ), [$this, 'renderDetailsMetaBox'], null, 'side' );
94
-		if( get_post_meta( $post->ID, 'review_type', true ) != 'local' )return;
94
+		if( get_post_meta( $post->ID, 'review_type', true ) != 'local' ) {
95
+			return;
96
+		}
95 97
 		add_meta_box( Application::ID.'_response', __( 'Respond Publicly', 'site-reviews' ), [$this, 'renderResponseMetaBox'], null, 'normal' );
96 98
 	}
97 99
 
@@ -127,7 +129,9 @@  discard block
 block discarded – undo
127 129
 	 */
128 130
 	public function renderAssignedToMetabox( WP_Post $post )
129 131
 	{
130
-		if( !$this->isReviewPostType( $post ))return;
132
+		if( !$this->isReviewPostType( $post )) {
133
+			return;
134
+		}
131 135
 		$assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true );
132 136
 		wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false );
133 137
 		glsr()->render( 'partials/editor/metabox-assigned-to', [
@@ -142,7 +146,9 @@  discard block
 block discarded – undo
142 146
 	 */
143 147
 	public function renderDetailsMetaBox( WP_Post $post )
144 148
 	{
145
-		if( !$this->isReviewPostType( $post ))return;
149
+		if( !$this->isReviewPostType( $post )) {
150
+			return;
151
+		}
146 152
 		$review = glsr( ReviewManager::class )->single( $post );
147 153
 		glsr()->render( 'partials/editor/metabox-details', [
148 154
 			'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ),
@@ -156,7 +162,9 @@  discard block
 block discarded – undo
156 162
 	 */
157 163
 	public function renderPinnedInPublishMetaBox()
158 164
 	{
159
-		if( !$this->isReviewPostType( get_post() ))return;
165
+		if( !$this->isReviewPostType( get_post() )) {
166
+			return;
167
+		}
160 168
 		glsr( Template::class )->render( 'partials/editor/pinned', [
161 169
 			'context' => [
162 170
 				'no' => __( 'No', 'site-reviews' ),
@@ -172,7 +180,9 @@  discard block
 block discarded – undo
172 180
 	 */
173 181
 	public function renderResponseMetaBox( WP_Post $post )
174 182
 	{
175
-		if( !$this->isReviewPostType( $post ))return;
183
+		if( !$this->isReviewPostType( $post )) {
184
+			return;
185
+		}
176 186
 		wp_nonce_field( 'response', '_nonce-response', false );
177 187
 		glsr()->render( 'partials/editor/metabox-response', [
178 188
 			'response' => get_post_meta( $post->ID, 'response', true ),
@@ -185,7 +195,9 @@  discard block
 block discarded – undo
185 195
 	 */
186 196
 	public function renderReviewEditor( WP_Post $post )
187 197
 	{
188
-		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return;
198
+		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post )) {
199
+			return;
200
+		}
189 201
 		glsr()->render( 'partials/editor/review', [
190 202
 			'post' => $post,
191 203
 			'response' => get_post_meta( $post->ID, 'response', true ),
@@ -199,7 +211,9 @@  discard block
 block discarded – undo
199 211
 	public function renderReviewFields()
200 212
 	{
201 213
 		$screen = glsr_current_screen();
202
-		if( $screen->base != 'post' || $screen->post_type != Application::POST_TYPE )return;
214
+		if( $screen->base != 'post' || $screen->post_type != Application::POST_TYPE ) {
215
+			return;
216
+		}
203 217
 		add_action( 'edit_form_after_title', [$this, 'renderReviewEditor'] );
204 218
 		add_action( 'edit_form_top',         [$this, 'renderReviewNotice'] );
205 219
 	}
@@ -210,7 +224,9 @@  discard block
 block discarded – undo
210 224
 	 */
211 225
 	public function renderReviewNotice( WP_Post $post )
212 226
 	{
213
-		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return;
227
+		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post )) {
228
+			return;
229
+		}
214 230
 		glsr( Notice::class )->addWarning( sprintf(
215 231
 			__( '%s reviews are read-only.', 'site-reviews' ),
216 232
 			glsr( Columns::class )->buildColumnReviewType( $post->ID )
@@ -229,7 +245,9 @@  discard block
 block discarded – undo
229 245
 	 */
230 246
 	public function renderTaxonomyMetabox( WP_Post $post )
231 247
 	{
232
-		if( !$this->isReviewPostType( $post ))return;
248
+		if( !$this->isReviewPostType( $post )) {
249
+			return;
250
+		}
233 251
 		glsr()->render( 'partials/editor/metabox-categories', [
234 252
 			'post' => $post,
235 253
 			'tax_name' => Application::TAXONOMY,
@@ -267,7 +285,9 @@  discard block
 block discarded – undo
267 285
 	protected function buildAssignedToTemplate( $assignedTo, WP_Post $post )
268 286
 	{
269 287
 		$assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo );
270
-		if( !( $assignedPost instanceof WP_Post ))return;
288
+		if( !( $assignedPost instanceof WP_Post )) {
289
+			return;
290
+		}
271 291
 		return glsr( Template::class )->build( 'partials/editor/assigned-post', [
272 292
 			'context' => [
273 293
 				'data.url' => (string)get_permalink( $assignedPost ),
@@ -312,7 +332,9 @@  discard block
 block discarded – undo
312 332
 	 */
313 333
 	protected function getReviewType( $review )
314 334
 	{
315
-		if( count( glsr()->reviewTypes ) < 2 )return;
335
+		if( count( glsr()->reviewTypes ) < 2 ) {
336
+			return;
337
+		}
316 338
 		$reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes )
317 339
 			? glsr()->reviewTypes[$review->review_type]
318 340
 			: __( 'Unknown', 'site-reviews' );
Please login to merge, or discard this patch.
plugin/Controllers/RestReviewController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 		register_rest_route( $this->namespace, '/types', [
29 29
 			'callback' => [$this, 'get_types'],
30 30
 			'methods' => Server::READABLE,
31
-		]);
31
+		] );
32 32
 	}
33 33
 
34 34
 	/**
Please login to merge, or discard this patch.
plugin/Controllers/RestCategoryController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,6 +33,6 @@
 block discarded – undo
33 33
 				'permission_callback' => [$this, 'get_items_permissions_check'],
34 34
 			],
35 35
 			'schema' => [$this, 'get_public_item_schema'],
36
-		]);
36
+		] );
37 37
 	}
38 38
 }
Please login to merge, or discard this patch.
views/pages/addons/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 				'title' => 'Images',
18 18
 			],
19 19
 			'plugin' => 'site-reviews-images/site-reviews-images.php',
20
-		]);
20
+		] );
21 21
 		$template->render( 'partials/addons/addon', [
22 22
 			'context' => [
23 23
 				'description' => __( 'Sync your Tripadvisor reviews to your website and manage them with Site Reviews.', 'site-reviews' ),
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 				'title' => 'Tripadvisor Reviews',
27 27
 			],
28 28
 			'plugin' => 'site-reviews-tripadvisor/site-reviews-tripadvisor.php',
29
-		]);
29
+		] );
30 30
 	?>
31 31
 	</div>
32 32
 </div>
Please login to merge, or discard this patch.
plugin/Controllers/TaxonomyController.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,12 +35,12 @@  discard block
 block discarded – undo
35 35
 	 */
36 36
 	public function renderTaxonomyFilter()
37 37
 	{
38
-		if( !is_object_in_taxonomy( glsr_current_screen()->post_type, Application::TAXONOMY ))return;
38
+		if( !is_object_in_taxonomy( glsr_current_screen()->post_type, Application::TAXONOMY ) )return;
39 39
 		echo glsr( Builder::class )->label( __( 'Filter by category', 'site-reviews' ), [
40 40
 			'class' => 'screen-reader-text',
41 41
 			'for' => Application::TAXONOMY,
42
-		]);
43
-		wp_dropdown_categories([
42
+		] );
43
+		wp_dropdown_categories( [
44 44
 			'depth' => 3,
45 45
 			'hide_empty' => true,
46 46
 			'hide_if_empty' => true,
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 			'show_option_all' => $this->getShowOptionAll(),
53 53
 			'taxonomy' => Application::TAXONOMY,
54 54
 			'value_field' => 'slug',
55
-		]);
55
+		] );
56 56
 	}
57 57
 
58 58
 	/**
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	protected function getSelected()
62 62
 	{
63 63
 		global $wp_query;
64
-		return isset( $wp_query->query[Application::TAXONOMY] )
64
+		return isset($wp_query->query[Application::TAXONOMY])
65 65
 			? $wp_query->query[Application::TAXONOMY]
66 66
 			: '';
67 67
 	}
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	{
74 74
 		$taxonomy = get_taxonomy( Application::TAXONOMY );
75 75
 		return $taxonomy
76
-			? ucfirst( strtolower( $taxonomy->labels->all_items ))
76
+			? ucfirst( strtolower( $taxonomy->labels->all_items ) )
77 77
 			: '';
78 78
 	}
79 79
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,9 @@
 block discarded – undo
35 35
 	 */
36 36
 	public function renderTaxonomyFilter()
37 37
 	{
38
-		if( !is_object_in_taxonomy( glsr_current_screen()->post_type, Application::TAXONOMY ))return;
38
+		if( !is_object_in_taxonomy( glsr_current_screen()->post_type, Application::TAXONOMY )) {
39
+			return;
40
+		}
39 41
 		echo glsr( Builder::class )->label( __( 'Filter by category', 'site-reviews' ), [
40 42
 			'class' => 'screen-reader-text',
41 43
 			'for' => Application::TAXONOMY,
Please login to merge, or discard this patch.
plugin/Controllers/AdminController.php 2 patches
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,12 +108,16 @@
 block discarded – undo
108 108
 	public function renderTinymceButton( $editorId )
109 109
 	{
110 110
 		$allowedEditors = apply_filters( 'site-reviews/tinymce/editor-ids', ['content'], $editorId );
111
-		if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors ))return;
111
+		if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors )) {
112
+			return;
113
+		}
112 114
 		$shortcodes = [];
113 115
 		foreach( glsr()->mceShortcodes as $shortcode => $values ) {
114 116
 			$shortcodes[$shortcode] = $values;
115 117
 		}
116
-		if( empty( $shortcodes ))return;
118
+		if( empty( $shortcodes )) {
119
+			return;
120
+		}
117 121
 		glsr()->render( 'partials/editor/tinymce', [
118 122
 			'shortcodes' => $shortcodes,
119 123
 		]);
Please login to merge, or discard this patch.
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	 */
25 25
 	public function enqueueAssets()
26 26
 	{
27
-		$command = new EnqueueAdminAssets([
27
+		$command = new EnqueueAdminAssets( [
28 28
 			'pointers' => [[
29 29
 				'content' => __( 'You can pin exceptional reviews so that they are always shown first.', 'site-reviews' ),
30 30
 				'id' => 'glsr-pointer-pinned',
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 				'target' => '#misc-pub-pinned',
37 37
 				'title' => __( 'Pin Your Reviews', 'site-reviews' ),
38 38
 			]],
39
-		]);
39
+		] );
40 40
 		$this->execute( $command );
41 41
 	}
42 42
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	{
49 49
 		$links['settings'] = glsr( Builder::class )->a( __( 'Settings', 'site-reviews' ), [
50 50
 			'href' => admin_url( 'edit.php?post_type='.Application::POST_TYPE.'&page=settings' ),
51
-		]);
51
+		] );
52 52
 		return $links;
53 53
 	}
54 54
 
@@ -60,20 +60,20 @@  discard block
 block discarded – undo
60 60
 	public function filterDashboardGlanceItems( $items )
61 61
 	{
62 62
 		$postCount = wp_count_posts( Application::POST_TYPE );
63
-		if( empty( $postCount->publish )) {
63
+		if( empty($postCount->publish) ) {
64 64
 			return $items;
65 65
 		}
66 66
 		$text = _n( '%s Review', '%s Reviews', $postCount->publish, 'site-reviews' );
67
-		$text = sprintf( $text, number_format_i18n( $postCount->publish ));
67
+		$text = sprintf( $text, number_format_i18n( $postCount->publish ) );
68 68
 		$items = glsr( Helper::class )->consolidateArray( $items );
69 69
 		$items[] = current_user_can( get_post_type_object( Application::POST_TYPE )->cap->edit_posts )
70 70
 			? glsr( Builder::class )->a( $text, [
71 71
 				'class' => 'glsr-review-count',
72 72
 				'href' => 'edit.php?post_type='.Application::POST_TYPE,
73
-			])
73
+			] )
74 74
 			: glsr( Builder::class )->span( $text, [
75 75
 				'class' => 'glsr-review-count',
76
-			]);
76
+			] );
77 77
 		return $items;
78 78
 	}
79 79
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 	 */
85 85
 	public function filterTinymcePlugins( $plugins )
86 86
 	{
87
-		if( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' )) {
87
+		if( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) {
88 88
 			$plugins = glsr( Helper::class )->consolidateArray( $plugins );
89 89
 			$plugins['glsr_shortcode'] = glsr()->url( 'assets/scripts/mce-plugin.js' );
90 90
 		}
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
 	 */
98 98
 	public function registerTinymcePopups()
99 99
 	{
100
-		$command = new RegisterTinymcePopups([
100
+		$command = new RegisterTinymcePopups( [
101 101
 			'site_reviews' => esc_html__( 'Recent Reviews', 'site-reviews' ),
102 102
 			'site_reviews_form' => esc_html__( 'Submit a Review', 'site-reviews' ),
103 103
 			'site_reviews_summary' => esc_html__( 'Summary of Reviews', 'site-reviews' ),
104
-		]);
104
+		] );
105 105
 		$this->execute( $command );
106 106
 	}
107 107
 
@@ -113,15 +113,15 @@  discard block
 block discarded – undo
113 113
 	public function renderTinymceButton( $editorId )
114 114
 	{
115 115
 		$allowedEditors = apply_filters( 'site-reviews/tinymce/editor-ids', ['content'], $editorId );
116
-		if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors ))return;
116
+		if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors ) )return;
117 117
 		$shortcodes = [];
118 118
 		foreach( glsr()->mceShortcodes as $shortcode => $values ) {
119 119
 			$shortcodes[$shortcode] = $values;
120 120
 		}
121
-		if( empty( $shortcodes ))return;
121
+		if( empty($shortcodes) )return;
122 122
 		glsr()->render( 'partials/editor/tinymce', [
123 123
 			'shortcodes' => $shortcodes,
124
-		]);
124
+		] );
125 125
 	}
126 126
 
127 127
 	/**
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 	public function routerClearConsole()
131 131
 	{
132 132
 		glsr( Console::class )->clear();
133
-		glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ));
133
+		glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ) );
134 134
 	}
135 135
 
136 136
 	/**
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 	 */
139 139
 	public function routerFetchConsole()
140 140
 	{
141
-		glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' ));
141
+		glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' ) );
142 142
 	}
143 143
 
144 144
 	/**
@@ -157,13 +157,13 @@  discard block
 block discarded – undo
157 157
 		}
158 158
 		$postIds = glsr( SqlQueries::class )->getReviewsMeta( 'assigned_to' );
159 159
 		foreach( $postIds as $postId ) {
160
-			$countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId ));
160
+			$countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId ) );
161 161
 		}
162 162
 		$countManager->setCounts( $countManager->buildCounts() );
163 163
 		if( $showNotice ) {
164
-			glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ));
164
+			glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ) );
165 165
 		}
166
-		glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' ));
166
+		glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' ) );
167 167
 	}
168 168
 
169 169
 	/**
@@ -197,17 +197,17 @@  discard block
 block discarded – undo
197 197
 	{
198 198
 		$file = $_FILES['import-file'];
199 199
 		if( $file['error'] !== UPLOAD_ERR_OK ) {
200
-			return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ));
200
+			return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ) );
201 201
 		}
202
-		if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] )) {
203
-			return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ));
202
+		if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] ) ) {
203
+			return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ) );
204 204
 		}
205 205
 		$settings = json_decode( file_get_contents( $file['tmp_name'] ), true );
206
-		if( empty( $settings )) {
207
-			return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ));
206
+		if( empty($settings) ) {
207
+			return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ) );
208 208
 		}
209
-		glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ));
210
-		glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ));
209
+		glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ) );
210
+		glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ) );
211 211
 	}
212 212
 
213 213
 	/**
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 			UPLOAD_ERR_CANT_WRITE => __( 'Failed to write file to disk.', 'site-reviews' ),
226 226
 			UPLOAD_ERR_EXTENSION => __( 'A PHP extension stopped the file upload.', 'site-reviews' ),
227 227
 		];
228
-		return !isset( $errors[$errorCode] )
228
+		return !isset($errors[$errorCode])
229 229
 			? __( 'Unknown upload error.', 'site-reviews' )
230 230
 			: $errors[$errorCode];
231 231
 	}
Please login to merge, or discard this patch.