Passed
Push — master ( e5c4f5...cb56ad )
by Paul
03:27
created
plugin/Modules/Html/Fields/Field.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 	 */
22 22
 	public function build()
23 23
 	{
24
-		glsr_log()->error( 'Build method is not implemented for '.get_class( $this ));
24
+		glsr_log()->error( 'Build method is not implemented for '.get_class( $this ) );
25 25
 	}
26 26
 
27 27
 	/**
Please login to merge, or discard this patch.
plugin/Actions.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,8 @@
 block discarded – undo
33 33
 	protected $settings;
34 34
 	protected $taxonomy;
35 35
 
36
-	public function __construct( Application $app ) {
36
+	public function __construct( Application $app )
37
+	{
37 38
 		$this->app = $app;
38 39
 		$this->admin = $app->make( AdminController::class );
39 40
 		$this->blocks = $app->make( BlocksController::class );
Please login to merge, or discard this patch.
Spacing   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -54,57 +54,57 @@
 block discarded – undo
54 54
 	 */
55 55
 	public function run()
56 56
 	{
57
-		add_action( 'admin_enqueue_scripts',                        [$this->admin, 'enqueueAssets'] );
58
-		add_action( 'admin_init',                                   [$this->admin, 'registerTinymcePopups'] );
59
-		add_action( 'media_buttons',                                [$this->admin, 'renderTinymceButton'], 11 );
60
-		add_action( 'plugins_loaded',                               [$this->app, 'getDefaults'], 11 );
61
-		add_action( 'plugins_loaded',                               [$this->app, 'registerAddons'] );
62
-		add_action( 'plugins_loaded',                               [$this->app, 'registerLanguages'] );
63
-		add_action( 'plugins_loaded',                               [$this->app, 'registerReviewTypes'] );
64
-		add_action( 'upgrader_process_complete',                    [$this->app, 'upgraded'], 10, 2 );
65
-		add_action( 'init',                                         [$this->blocks, 'registerAssets'], 9 );
66
-		add_action( 'init',                                         [$this->blocks, 'registerBlocks'] );
67
-		add_action( 'admin_enqueue_scripts',                        [$this->editor, 'customizePostStatusLabels'] );
68
-		add_action( 'add_meta_boxes_'.Application::POST_TYPE,       [$this->editor, 'registerMetaBoxes'] );
69
-		add_action( 'admin_print_scripts',                          [$this->editor, 'removeAutosave'], 999 );
70
-		add_action( 'admin_menu',                                   [$this->editor, 'removeMetaBoxes'] );
71
-		add_action( 'current_screen',                               [$this->editor, 'removePostTypeSupport'] );
72
-		add_action( 'post_submitbox_misc_actions',                  [$this->editor, 'renderPinnedInPublishMetaBox'] );
73
-		add_action( 'admin_head',                                   [$this->editor, 'renderReviewFields'] );
74
-		add_action( 'admin_action_revert',                          [$this->editor, 'revertReview'] );
75
-		add_action( 'save_post_'.Application::POST_TYPE,            [$this->editor, 'saveMetaboxes'] );
76
-		add_action( 'admin_action_approve',                         [$this->listtable, 'approve'] );
77
-		add_action( 'bulk_edit_custom_box',                         [$this->listtable, 'renderBulkEditFields'], 10, 2 );
78
-		add_action( 'restrict_manage_posts',                        [$this->listtable, 'renderColumnFilters'] );
79
-		add_action( 'manage_posts_custom_column',                   [$this->listtable, 'renderColumnValues'], 10, 2 );
80
-		add_action( 'save_post_'.Application::POST_TYPE,            [$this->listtable, 'saveBulkEditFields'] );
81
-		add_action( 'pre_get_posts',                                [$this->listtable, 'setQueryForColumn'] );
82
-		add_action( 'admin_action_unapprove',                       [$this->listtable, 'unapprove'] );
83
-		add_action( 'init',                                         [$this->main, 'registerPostType'], 8 );
84
-		add_action( 'init',                                         [$this->main, 'registerShortcodes'] );
85
-		add_action( 'init',                                         [$this->main, 'registerTaxonomy'] );
86
-		add_action( 'widgets_init',                                 [$this->main, 'registerWidgets'] );
87
-		add_action( 'admin_menu',                                   [$this->menu, 'registerMenuCount'] );
88
-		add_action( 'admin_menu',                                   [$this->menu, 'registerSubMenus'] );
89
-		add_action( 'admin_init',                                   [$this->menu, 'setCustomPermissions'], 999 );
90
-		add_action( 'wp_enqueue_scripts',                           [$this->public, 'enqueueAssets'], 999 );
91
-		add_filter( 'site-reviews/builder',                         [$this->public, 'modifyBuilder'] );
92
-		add_action( 'wp_footer',                                    [$this->public, 'renderSchema'] );
93
-		add_action( 'set_object_terms',                             [$this->review, 'onAfterChangeCategory'], 10, 6 );
94
-		add_action( 'transition_post_status',                       [$this->review, 'onAfterChangeStatus'], 10, 3 );
95
-		add_action( 'site-reviews/review/created',                  [$this->review, 'onAfterCreate'] );
96
-		add_action( 'before_delete_post',                           [$this->review, 'onBeforeDelete'] );
97
-		add_action( 'update_postmeta',                              [$this->review, 'onBeforeUpdate'], 10, 4 );
98
-		add_action( 'admin_init',                                   [$this->router, 'routeAdminPostRequest'] );
99
-		add_action( 'wp_ajax_'.Application::PREFIX.'action',        [$this->router, 'routeAjaxRequest'] );
57
+		add_action( 'admin_enqueue_scripts', [$this->admin, 'enqueueAssets'] );
58
+		add_action( 'admin_init', [$this->admin, 'registerTinymcePopups'] );
59
+		add_action( 'media_buttons', [$this->admin, 'renderTinymceButton'], 11 );
60
+		add_action( 'plugins_loaded', [$this->app, 'getDefaults'], 11 );
61
+		add_action( 'plugins_loaded', [$this->app, 'registerAddons'] );
62
+		add_action( 'plugins_loaded', [$this->app, 'registerLanguages'] );
63
+		add_action( 'plugins_loaded', [$this->app, 'registerReviewTypes'] );
64
+		add_action( 'upgrader_process_complete', [$this->app, 'upgraded'], 10, 2 );
65
+		add_action( 'init', [$this->blocks, 'registerAssets'], 9 );
66
+		add_action( 'init', [$this->blocks, 'registerBlocks'] );
67
+		add_action( 'admin_enqueue_scripts', [$this->editor, 'customizePostStatusLabels'] );
68
+		add_action( 'add_meta_boxes_'.Application::POST_TYPE, [$this->editor, 'registerMetaBoxes'] );
69
+		add_action( 'admin_print_scripts', [$this->editor, 'removeAutosave'], 999 );
70
+		add_action( 'admin_menu', [$this->editor, 'removeMetaBoxes'] );
71
+		add_action( 'current_screen', [$this->editor, 'removePostTypeSupport'] );
72
+		add_action( 'post_submitbox_misc_actions', [$this->editor, 'renderPinnedInPublishMetaBox'] );
73
+		add_action( 'admin_head', [$this->editor, 'renderReviewFields'] );
74
+		add_action( 'admin_action_revert', [$this->editor, 'revertReview'] );
75
+		add_action( 'save_post_'.Application::POST_TYPE, [$this->editor, 'saveMetaboxes'] );
76
+		add_action( 'admin_action_approve', [$this->listtable, 'approve'] );
77
+		add_action( 'bulk_edit_custom_box', [$this->listtable, 'renderBulkEditFields'], 10, 2 );
78
+		add_action( 'restrict_manage_posts', [$this->listtable, 'renderColumnFilters'] );
79
+		add_action( 'manage_posts_custom_column', [$this->listtable, 'renderColumnValues'], 10, 2 );
80
+		add_action( 'save_post_'.Application::POST_TYPE, [$this->listtable, 'saveBulkEditFields'] );
81
+		add_action( 'pre_get_posts', [$this->listtable, 'setQueryForColumn'] );
82
+		add_action( 'admin_action_unapprove', [$this->listtable, 'unapprove'] );
83
+		add_action( 'init', [$this->main, 'registerPostType'], 8 );
84
+		add_action( 'init', [$this->main, 'registerShortcodes'] );
85
+		add_action( 'init', [$this->main, 'registerTaxonomy'] );
86
+		add_action( 'widgets_init', [$this->main, 'registerWidgets'] );
87
+		add_action( 'admin_menu', [$this->menu, 'registerMenuCount'] );
88
+		add_action( 'admin_menu', [$this->menu, 'registerSubMenus'] );
89
+		add_action( 'admin_init', [$this->menu, 'setCustomPermissions'], 999 );
90
+		add_action( 'wp_enqueue_scripts', [$this->public, 'enqueueAssets'], 999 );
91
+		add_filter( 'site-reviews/builder', [$this->public, 'modifyBuilder'] );
92
+		add_action( 'wp_footer', [$this->public, 'renderSchema'] );
93
+		add_action( 'set_object_terms', [$this->review, 'onAfterChangeCategory'], 10, 6 );
94
+		add_action( 'transition_post_status', [$this->review, 'onAfterChangeStatus'], 10, 3 );
95
+		add_action( 'site-reviews/review/created', [$this->review, 'onAfterCreate'] );
96
+		add_action( 'before_delete_post', [$this->review, 'onBeforeDelete'] );
97
+		add_action( 'update_postmeta', [$this->review, 'onBeforeUpdate'], 10, 4 );
98
+		add_action( 'admin_init', [$this->router, 'routeAdminPostRequest'] );
99
+		add_action( 'wp_ajax_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] );
100 100
 		add_action( 'wp_ajax_nopriv_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] );
101
-		add_action( 'init',                                         [$this->router, 'routePublicPostRequest'] );
102
-		add_action( 'site-reviews/schedule/session/purge',          [$this->session, 'deleteExpiredSessions'] );
103
-		add_action( 'admin_init',                                   [$this->settings, 'registerSettings'] );
104
-		add_action( Application::TAXONOMY.'_term_edit_form_top',    [$this->taxonomy, 'disableParents'] );
105
-		add_action( Application::TAXONOMY.'_term_new_form_tag',     [$this->taxonomy, 'disableParents'] );
106
-		add_action( Application::TAXONOMY.'_add_form_fields',       [$this->taxonomy, 'enableParents'] );
107
-		add_action( Application::TAXONOMY.'_edit_form',             [$this->taxonomy, 'enableParents'] );
108
-		add_action( 'restrict_manage_posts',                        [$this->taxonomy, 'renderTaxonomyFilter'], 9 );
101
+		add_action( 'init', [$this->router, 'routePublicPostRequest'] );
102
+		add_action( 'site-reviews/schedule/session/purge', [$this->session, 'deleteExpiredSessions'] );
103
+		add_action( 'admin_init', [$this->settings, 'registerSettings'] );
104
+		add_action( Application::TAXONOMY.'_term_edit_form_top', [$this->taxonomy, 'disableParents'] );
105
+		add_action( Application::TAXONOMY.'_term_new_form_tag', [$this->taxonomy, 'disableParents'] );
106
+		add_action( Application::TAXONOMY.'_add_form_fields', [$this->taxonomy, 'enableParents'] );
107
+		add_action( Application::TAXONOMY.'_edit_form', [$this->taxonomy, 'enableParents'] );
108
+		add_action( 'restrict_manage_posts', [$this->taxonomy, 'renderTaxonomyFilter'], 9 );
109 109
 	}
110 110
 }
Please login to merge, or discard this patch.
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.