Passed
Push — master ( 43cb65...18d76b )
by Paul
04:03
created
plugin/Actions.php 1 patch
Spacing   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -57,59 +57,59 @@
 block discarded – undo
57 57
 	 */
58 58
 	public function run()
59 59
 	{
60
-		add_action( 'admin_enqueue_scripts',                        [$this->admin, 'enqueueAssets'] );
61
-		add_action( 'admin_init',                                   [$this->admin, 'registerTinymcePopups'] );
62
-		add_action( 'media_buttons',                                [$this->admin, 'renderTinymceButton'], 11 );
63
-		add_action( 'plugins_loaded',                               [$this->app, 'getDefaults'], 11 );
64
-		add_action( 'plugins_loaded',                               [$this->app, 'registerAddons'] );
65
-		add_action( 'plugins_loaded',                               [$this->app, 'registerLanguages'] );
66
-		add_action( 'plugins_loaded',                               [$this->app, 'registerReviewTypes'] );
67
-		add_action( 'upgrader_process_complete',                    [$this->app, 'upgraded'], 10, 2 );
68
-		add_action( 'init',                                         [$this->blocks, 'registerAssets'], 9 );
69
-		add_action( 'init',                                         [$this->blocks, 'registerBlocks'] );
70
-		add_action( 'admin_footer',                                 [$this->console, 'logOnce'] );
71
-		add_action( 'wp_footer',                                    [$this->console, 'logOnce'] );
72
-		add_action( 'admin_enqueue_scripts',                        [$this->editor, 'customizePostStatusLabels'] );
73
-		add_action( 'add_meta_boxes_'.Application::POST_TYPE,       [$this->editor, 'registerMetaBoxes'] );
74
-		add_action( 'admin_print_scripts',                          [$this->editor, 'removeAutosave'], 999 );
75
-		add_action( 'admin_menu',                                   [$this->editor, 'removeMetaBoxes'] );
76
-		add_action( 'current_screen',                               [$this->editor, 'removePostTypeSupport'] );
77
-		add_action( 'post_submitbox_misc_actions',                  [$this->editor, 'renderPinnedInPublishMetaBox'] );
78
-		add_action( 'admin_head',                                   [$this->editor, 'renderReviewFields'] );
79
-		add_action( 'admin_action_revert',                          [$this->editor, 'revertReview'] );
80
-		add_action( 'save_post_'.Application::POST_TYPE,            [$this->editor, 'saveMetaboxes'] );
81
-		add_action( 'admin_action_approve',                         [$this->listtable, 'approve'] );
82
-		add_action( 'bulk_edit_custom_box',                         [$this->listtable, 'renderBulkEditFields'], 10, 2 );
83
-		add_action( 'restrict_manage_posts',                        [$this->listtable, 'renderColumnFilters'] );
60
+		add_action( 'admin_enqueue_scripts', [$this->admin, 'enqueueAssets'] );
61
+		add_action( 'admin_init', [$this->admin, 'registerTinymcePopups'] );
62
+		add_action( 'media_buttons', [$this->admin, 'renderTinymceButton'], 11 );
63
+		add_action( 'plugins_loaded', [$this->app, 'getDefaults'], 11 );
64
+		add_action( 'plugins_loaded', [$this->app, 'registerAddons'] );
65
+		add_action( 'plugins_loaded', [$this->app, 'registerLanguages'] );
66
+		add_action( 'plugins_loaded', [$this->app, 'registerReviewTypes'] );
67
+		add_action( 'upgrader_process_complete', [$this->app, 'upgraded'], 10, 2 );
68
+		add_action( 'init', [$this->blocks, 'registerAssets'], 9 );
69
+		add_action( 'init', [$this->blocks, 'registerBlocks'] );
70
+		add_action( 'admin_footer', [$this->console, 'logOnce'] );
71
+		add_action( 'wp_footer', [$this->console, 'logOnce'] );
72
+		add_action( 'admin_enqueue_scripts', [$this->editor, 'customizePostStatusLabels'] );
73
+		add_action( 'add_meta_boxes_'.Application::POST_TYPE, [$this->editor, 'registerMetaBoxes'] );
74
+		add_action( 'admin_print_scripts', [$this->editor, 'removeAutosave'], 999 );
75
+		add_action( 'admin_menu', [$this->editor, 'removeMetaBoxes'] );
76
+		add_action( 'current_screen', [$this->editor, 'removePostTypeSupport'] );
77
+		add_action( 'post_submitbox_misc_actions', [$this->editor, 'renderPinnedInPublishMetaBox'] );
78
+		add_action( 'admin_head', [$this->editor, 'renderReviewFields'] );
79
+		add_action( 'admin_action_revert', [$this->editor, 'revertReview'] );
80
+		add_action( 'save_post_'.Application::POST_TYPE, [$this->editor, 'saveMetaboxes'] );
81
+		add_action( 'admin_action_approve', [$this->listtable, 'approve'] );
82
+		add_action( 'bulk_edit_custom_box', [$this->listtable, 'renderBulkEditFields'], 10, 2 );
83
+		add_action( 'restrict_manage_posts', [$this->listtable, 'renderColumnFilters'] );
84 84
 		add_action( 'manage_'.Application::POST_TYPE.'_posts_custom_column', [$this->listtable, 'renderColumnValues'], 10, 2 );
85
-		add_action( 'save_post_'.Application::POST_TYPE,            [$this->listtable, 'saveBulkEditFields'] );
86
-		add_action( 'pre_get_posts',                                [$this->listtable, 'setQueryForColumn'] );
87
-		add_action( 'admin_action_unapprove',                       [$this->listtable, 'unapprove'] );
88
-		add_action( 'init',                                         [$this->main, 'registerPostType'], 8 );
89
-		add_action( 'init',                                         [$this->main, 'registerShortcodes'] );
90
-		add_action( 'init',                                         [$this->main, 'registerTaxonomy'] );
91
-		add_action( 'widgets_init',                                 [$this->main, 'registerWidgets'] );
92
-		add_action( 'admin_menu',                                   [$this->menu, 'registerMenuCount'] );
93
-		add_action( 'admin_menu',                                   [$this->menu, 'registerSubMenus'] );
94
-		add_action( 'admin_init',                                   [$this->menu, 'setCustomPermissions'], 999 );
95
-		add_action( 'wp_enqueue_scripts',                           [$this->public, 'enqueueAssets'], 999 );
96
-		add_filter( 'site-reviews/builder',                         [$this->public, 'modifyBuilder'] );
97
-		add_action( 'wp_footer',                                    [$this->public, 'renderSchema'] );
98
-		add_action( 'set_object_terms',                             [$this->review, 'onAfterChangeCategory'], 10, 6 );
99
-		add_action( 'transition_post_status',                       [$this->review, 'onAfterChangeStatus'], 10, 3 );
100
-		add_action( 'site-reviews/review/created',                  [$this->review, 'onAfterCreate'] );
101
-		add_action( 'before_delete_post',                           [$this->review, 'onBeforeDelete'] );
102
-		add_action( 'update_postmeta',                              [$this->review, 'onBeforeUpdate'], 10, 4 );
103
-		add_action( 'admin_init',                                   [$this->router, 'routeAdminPostRequest'] );
104
-		add_action( 'wp_ajax_'.Application::PREFIX.'action',        [$this->router, 'routeAjaxRequest'] );
85
+		add_action( 'save_post_'.Application::POST_TYPE, [$this->listtable, 'saveBulkEditFields'] );
86
+		add_action( 'pre_get_posts', [$this->listtable, 'setQueryForColumn'] );
87
+		add_action( 'admin_action_unapprove', [$this->listtable, 'unapprove'] );
88
+		add_action( 'init', [$this->main, 'registerPostType'], 8 );
89
+		add_action( 'init', [$this->main, 'registerShortcodes'] );
90
+		add_action( 'init', [$this->main, 'registerTaxonomy'] );
91
+		add_action( 'widgets_init', [$this->main, 'registerWidgets'] );
92
+		add_action( 'admin_menu', [$this->menu, 'registerMenuCount'] );
93
+		add_action( 'admin_menu', [$this->menu, 'registerSubMenus'] );
94
+		add_action( 'admin_init', [$this->menu, 'setCustomPermissions'], 999 );
95
+		add_action( 'wp_enqueue_scripts', [$this->public, 'enqueueAssets'], 999 );
96
+		add_filter( 'site-reviews/builder', [$this->public, 'modifyBuilder'] );
97
+		add_action( 'wp_footer', [$this->public, 'renderSchema'] );
98
+		add_action( 'set_object_terms', [$this->review, 'onAfterChangeCategory'], 10, 6 );
99
+		add_action( 'transition_post_status', [$this->review, 'onAfterChangeStatus'], 10, 3 );
100
+		add_action( 'site-reviews/review/created', [$this->review, 'onAfterCreate'] );
101
+		add_action( 'before_delete_post', [$this->review, 'onBeforeDelete'] );
102
+		add_action( 'update_postmeta', [$this->review, 'onBeforeUpdate'], 10, 4 );
103
+		add_action( 'admin_init', [$this->router, 'routeAdminPostRequest'] );
104
+		add_action( 'wp_ajax_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] );
105 105
 		add_action( 'wp_ajax_nopriv_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] );
106
-		add_action( 'init',                                         [$this->router, 'routePublicPostRequest'] );
107
-		add_action( 'site-reviews/schedule/session/purge',          [$this->session, 'deleteExpiredSessions'] );
108
-		add_action( 'admin_init',                                   [$this->settings, 'registerSettings'] );
109
-		add_action( Application::TAXONOMY.'_term_edit_form_top',    [$this->taxonomy, 'disableParents'] );
110
-		add_action( Application::TAXONOMY.'_term_new_form_tag',     [$this->taxonomy, 'disableParents'] );
111
-		add_action( Application::TAXONOMY.'_add_form_fields',       [$this->taxonomy, 'enableParents'] );
112
-		add_action( Application::TAXONOMY.'_edit_form',             [$this->taxonomy, 'enableParents'] );
113
-		add_action( 'restrict_manage_posts',                        [$this->taxonomy, 'renderTaxonomyFilter'], 9 );
106
+		add_action( 'init', [$this->router, 'routePublicPostRequest'] );
107
+		add_action( 'site-reviews/schedule/session/purge', [$this->session, 'deleteExpiredSessions'] );
108
+		add_action( 'admin_init', [$this->settings, 'registerSettings'] );
109
+		add_action( Application::TAXONOMY.'_term_edit_form_top', [$this->taxonomy, 'disableParents'] );
110
+		add_action( Application::TAXONOMY.'_term_new_form_tag', [$this->taxonomy, 'disableParents'] );
111
+		add_action( Application::TAXONOMY.'_add_form_fields', [$this->taxonomy, 'enableParents'] );
112
+		add_action( Application::TAXONOMY.'_edit_form', [$this->taxonomy, 'enableParents'] );
113
+		add_action( 'restrict_manage_posts', [$this->taxonomy, 'renderTaxonomyFilter'], 9 );
114 114
 	}
115 115
 }
Please login to merge, or discard this patch.
plugin/Modules/Translation.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	{
31 31
 		$translations = $this->translations();
32 32
 		$entries = $this->filter( $translations, $this->entries() )->results();
33
-		array_walk( $translations, function( &$entry ) use( $entries ) {
33
+		array_walk( $translations, function( &$entry ) use($entries) {
34 34
 			$entry['desc'] = array_key_exists( $entry['id'], $entries )
35 35
 				? $this->getEntryString( $entries[$entry['id']], 'msgctxt' )
36 36
 				: '';
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 	 */
44 44
 	public function entries()
45 45
 	{
46
-		if( !isset( $this->entries )) {
46
+		if( !isset($this->entries) ) {
47 47
 			$potFile = glsr()->path( glsr()->languages.'/'.Application::ID.'.pot' );
48 48
 			$entries = $this->extractEntriesFromPotFile( $potFile );
49 49
 			$entries = apply_filters( 'site-reviews/translation/entries', $entries );
@@ -88,13 +88,13 @@  discard block
 block discarded – undo
88 88
 	 */
89 89
 	public function filter( $filterWith = null, $entries = null, $intersect = true )
90 90
 	{
91
-		if( !is_array( $entries )) {
91
+		if( !is_array( $entries ) ) {
92 92
 			$entries = $this->results;
93 93
 		}
94
-		if( !is_array( $filterWith )) {
94
+		if( !is_array( $filterWith ) ) {
95 95
 			$filterWith = $this->translations();
96 96
 		}
97
-		$keys = array_flip( glsr_array_column( $filterWith, 'id' ));
97
+		$keys = array_flip( glsr_array_column( $filterWith, 'id' ) );
98 98
 		$this->results = $intersect
99 99
 			? array_intersect_key( $entries, $keys )
100 100
 			: array_diff_key( $entries, $keys );
@@ -108,17 +108,17 @@  discard block
 block discarded – undo
108 108
 	public function render( $template, array $entry )
109 109
 	{
110 110
 		$data = array_combine(
111
-			array_map( function( $key ) { return 'data.'.$key; }, array_keys( $entry )),
111
+			array_map( function( $key ) { return 'data.'.$key; }, array_keys( $entry ) ),
112 112
 			$entry
113 113
 		);
114 114
 		$data['data.class'] = $data['data.error'] = '';
115
-		if( array_search( $entry['s1'], glsr_array_column( $this->entries(), 'msgid' )) === false ) {
115
+		if( array_search( $entry['s1'], glsr_array_column( $this->entries(), 'msgid' ) ) === false ) {
116 116
 			$data['data.class'] = 'is-invalid';
117 117
 			$data['data.error'] = __( 'This custom translation is no longer valid as the original text has been changed or removed.', 'site-reviews' );
118 118
 		}
119 119
 		return glsr( Template::class )->build( 'partials/translations/'.$template, [
120 120
 			'context' => $data,
121
-		]);
121
+		] );
122 122
 	}
123 123
 
124 124
 	/**
@@ -150,13 +150,13 @@  discard block
 block discarded – undo
150 150
 				'p1' => $this->getEntryString( $entry, 'msgid_plural' ),
151 151
 				's1' => $this->getEntryString( $entry, 'msgid' ),
152 152
 			];
153
-			$text = !empty( $data['p1'] )
153
+			$text = !empty($data['p1'])
154 154
 				? sprintf( '%s | %s', $data['s1'], $data['p1'] )
155 155
 				: $data['s1'];
156 156
 			$rendered .= $this->render( 'result', [
157
-				'entry' => json_encode( $data, JSON_HEX_APOS|JSON_HEX_QUOT|JSON_HEX_TAG|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE ),
157
+				'entry' => json_encode( $data, JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_TAG | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ),
158 158
 				'text' => wp_strip_all_tags( $text ),
159
-			]);
159
+			] );
160 160
 		}
161 161
 		if( $resetAfterRender ) {
162 162
 			$this->reset();
@@ -189,12 +189,12 @@  discard block
 block discarded – undo
189 189
 	public function search( $needle = '' )
190 190
 	{
191 191
 		$this->reset();
192
-		$needle = trim( strtolower( $needle ));
192
+		$needle = trim( strtolower( $needle ) );
193 193
 		foreach( $this->entries() as $key => $entry ) {
194
-			$single = strtolower( $this->getEntryString( $entry, 'msgid' ));
195
-			$plural = strtolower( $this->getEntryString( $entry, 'msgid_plural' ));
194
+			$single = strtolower( $this->getEntryString( $entry, 'msgid' ) );
195
+			$plural = strtolower( $this->getEntryString( $entry, 'msgid_plural' ) );
196 196
 			if( strlen( $needle ) < static::SEARCH_THRESHOLD ) {
197
-				if( in_array( $needle, [$single, $plural] )) {
197
+				if( in_array( $needle, [$single, $plural] ) ) {
198 198
 					$this->results[$key] = $entry;
199 199
 				}
200 200
 			}
@@ -212,10 +212,10 @@  discard block
 block discarded – undo
212 212
 	public function translations()
213 213
 	{
214 214
 		static $translations;
215
-		if( empty( $translations )) {
215
+		if( empty($translations) ) {
216 216
 			$settings = glsr( OptionManager::class )->get( 'settings' );
217
-			$translations = isset( $settings['strings'] )
218
-				? $this->normalizeSettings( (array) $settings['strings'] )
217
+			$translations = isset($settings['strings'])
218
+				? $this->normalizeSettings( (array)$settings['strings'] )
219 219
 				: [];
220 220
 		}
221 221
 		return $translations;
@@ -227,8 +227,8 @@  discard block
 block discarded – undo
227 227
 	 */
228 228
 	protected function getEntryString( array $entry, $key )
229 229
 	{
230
-		return isset( $entry[$key] )
231
-			? implode( '', (array) $entry[$key] )
230
+		return isset($entry[$key])
231
+			? implode( '', (array)$entry[$key] )
232 232
 			: '';
233 233
 	}
234 234
 
@@ -240,9 +240,9 @@  discard block
 block discarded – undo
240 240
 		$keys = [
241 241
 			'msgctxt', 'msgid', 'msgid_plural', 'msgstr', 'msgstr[0]', 'msgstr[1]',
242 242
 		];
243
-		array_walk( $entries, function( &$entry ) use( $keys ) {
243
+		array_walk( $entries, function( &$entry ) use($keys) {
244 244
 			foreach( $keys as $key ) {
245
-				if( is_array( $entry )) {
245
+				if( is_array( $entry ) ) {
246 246
 					$entry = $this->normalizeEntryString( $entry, $key );
247 247
 					continue;
248 248
 				}
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
 	 */
259 259
 	protected function normalizeEntryString( array $entry, $key )
260 260
 	{
261
-		if( isset( $entry[$key] )) {
261
+		if( isset($entry[$key]) ) {
262 262
 			$entry[$key] = $this->getEntryString( $entry, $key );
263 263
 		}
264 264
 		return $entry;
@@ -272,11 +272,11 @@  discard block
 block discarded – undo
272 272
 		$defaultString = array_fill_keys( ['id', 's1', 's2', 'p1', 'p2'], '' );
273 273
 		$strings = array_filter( $strings, 'is_array' );
274 274
 		foreach( $strings as &$string ) {
275
-			$string['type'] = isset( $string['p1'] ) ? 'plural' : 'single';
275
+			$string['type'] = isset($string['p1']) ? 'plural' : 'single';
276 276
 			$string = wp_parse_args( $string, $defaultString );
277 277
 		}
278 278
 		return array_filter( $strings, function( $string ) {
279
-			return !empty( $string['id'] );
279
+			return !empty($string['id']);
280 280
 		});
281 281
 	}
282 282
 }
Please login to merge, or discard this patch.
plugin/Modules/Console.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	 */
111 111
 	public function get()
112 112
 	{
113
-		return empty( $this->log )
113
+		return empty($this->log)
114 114
 			? __( 'Console is empty', 'site-reviews' )
115 115
 			: $this->log;
116 116
 	}
@@ -122,11 +122,11 @@  discard block
 block discarded – undo
122 122
 	public function humanSize( $valueIfEmpty = null )
123 123
 	{
124 124
 		$bytes = $this->size();
125
-		if( empty( $bytes ) && is_string( $valueIfEmpty )) {
125
+		if( empty($bytes) && is_string( $valueIfEmpty ) ) {
126 126
 			return $valueIfEmpty;
127 127
 		}
128
-		$exponent = floor( log( max( $bytes, 1 ), 1024 ));
129
-		return round( $bytes / pow( 1024, $exponent ), 2 ).' '.['bytes','KB','MB','GB'][$exponent];
128
+		$exponent = floor( log( max( $bytes, 1 ), 1024 ) );
129
+		return round( $bytes / pow( 1024, $exponent ), 2 ).' '.['bytes', 'KB', 'MB', 'GB'][$exponent];
130 130
 	}
131 131
 
132 132
 	/**
@@ -149,9 +149,9 @@  discard block
 block discarded – undo
149 149
 	public function log( $level, $message, array $context = [] )
150 150
 	{
151 151
 		$constants = (new ReflectionClass( __CLASS__ ))->getConstants();
152
-		if( in_array( $level, $constants, true )) {
152
+		if( in_array( $level, $constants, true ) ) {
153 153
 			$entry = $this->buildLogEntry( $level, $message, $context );
154
-			file_put_contents( $this->file, $entry, FILE_APPEND|LOCK_EX );
154
+			file_put_contents( $this->file, $entry, FILE_APPEND | LOCK_EX );
155 155
 			$this->reset();
156 156
 		}
157 157
 		return $this;
@@ -163,10 +163,10 @@  discard block
 block discarded – undo
163 163
 	public function logOnce()
164 164
 	{
165 165
 		$single = glsr( Session::class )->get( 'glsr_log_once', null, true );
166
-		if( !is_array( $single ))return;
166
+		if( !is_array( $single ) )return;
167 167
 		foreach( $single as $message => $debug ) {
168
-			if( !empty( $debug )) {
169
-				$message.= PHP_EOL.print_r( $debug, 1 );
168
+			if( !empty($debug) ) {
169
+				$message .= PHP_EOL.print_r( $debug, 1 );
170 170
 			}
171 171
 			$this->log( static::RECURRING, $message );
172 172
 		}
@@ -191,10 +191,10 @@  discard block
 block discarded – undo
191 191
 	public function once( $message, $debug = '' )
192 192
 	{
193 193
 		$once = glsr( Session::class )->get( 'glsr_log_once', [] );
194
-		if( !is_array( $once )) {
194
+		if( !is_array( $once ) ) {
195 195
 			$once = [];
196 196
 		}
197
-		if( !isset( $once[$message] )) {
197
+		if( !isset($once[$message]) ) {
198 198
 			$once[$message] = $debug;
199 199
 			glsr( Session::class )->set( 'glsr_log_once', $once );
200 200
 		}
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
 	 */
257 257
 	protected function interpolate( $message, $context = [] )
258 258
 	{
259
-		if( $this->isObjectOrArray( $message ) || !is_array( $context )) {
259
+		if( $this->isObjectOrArray( $message ) || !is_array( $context ) ) {
260 260
 			return print_r( $message, true );
261 261
 		}
262 262
 		$replace = [];
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 		if( $value instanceof DateTime ) {
285 285
 			$value = $value->format( 'Y-m-d H:i:s' );
286 286
 		}
287
-		else if( $this->isObjectOrArray( $value )) {
287
+		else if( $this->isObjectOrArray( $value ) ) {
288 288
 			$value = json_encode( $value );
289 289
 		}
290 290
 		return (string)$value;
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
 			$this->clear();
300 300
 			file_put_contents(
301 301
 				$this->file,
302
-				$this->buildLogEntry( 'info', __( 'Console was automatically cleared (128 KB maximum size)', 'site-reviews' ))
302
+				$this->buildLogEntry( 'info', __( 'Console was automatically cleared (128 KB maximum size)', 'site-reviews' ) )
303 303
 			);
304 304
 		}
305 305
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,9 @@
 block discarded – undo
163 163
 	public function logOnce()
164 164
 	{
165 165
 		$single = glsr( Session::class )->get( 'glsr_log_once', null, true );
166
-		if( !is_array( $single ))return;
166
+		if( !is_array( $single )) {
167
+			return;
168
+		}
167 169
 		foreach( $single as $message => $debug ) {
168 170
 			if( !empty( $debug )) {
169 171
 				$message.= PHP_EOL.print_r( $debug, 1 );
Please login to merge, or discard this patch.
plugin/Controllers/ListTableController/Columns.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,7 +78,9 @@  discard block
 block discarded – undo
78 78
 	 */
79 79
 	public function renderFilters( $postType )
80 80
 	{
81
-		if( $postType !== Application::POST_TYPE )return;
81
+		if( $postType !== Application::POST_TYPE ) {
82
+			return;
83
+		}
82 84
 		if( !( $status = filter_input( INPUT_GET, 'post_status' ))) {
83 85
 			$status = 'publish';
84 86
 		}
@@ -107,7 +109,9 @@  discard block
 block discarded – undo
107 109
 	 */
108 110
 	protected function renderFilterRatings( $ratings )
109 111
 	{
110
-		if( empty( $ratings ))return;
112
+		if( empty( $ratings )) {
113
+			return;
114
+		}
111 115
 		$ratings = array_flip( array_reverse( $ratings ));
112 116
 		array_walk( $ratings, function( &$value, $key ) {
113 117
 			$label = _n( '%s star', '%s stars', $key, 'site-reviews' );
@@ -130,7 +134,9 @@  discard block
 block discarded – undo
130 134
 	 */
131 135
 	protected function renderFilterTypes( $types )
132 136
 	{
133
-		if( count( glsr()->reviewTypes ) < 2 )return;
137
+		if( count( glsr()->reviewTypes ) < 2 ) {
138
+			return;
139
+		}
134 140
 		echo glsr( Builder::class )->label( __( 'Filter by type', 'site-reviews' ), [
135 141
 			'class' => 'screen-reader-text',
136 142
 			'for' => 'review_type',
Please login to merge, or discard this patch.
plugin/Commands/CreateReview.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -30,25 +30,25 @@  discard block
 block discarded – undo
30 30
 	public function __construct( $input )
31 31
 	{
32 32
 		$this->request = $input;
33
-		$this->ajax_request = isset( $input['_ajax_request'] );
33
+		$this->ajax_request = isset($input['_ajax_request']);
34 34
 		$this->assigned_to = $this->getNumeric( 'assign_to' );
35
-		$this->author = sanitize_text_field( $this->getUser( 'name' ));
35
+		$this->author = sanitize_text_field( $this->getUser( 'name' ) );
36 36
 		$this->avatar = $this->getAvatar();
37
-		$this->blacklisted = isset( $input['blacklisted'] );
38
-		$this->category = sanitize_key( $this->get( 'category' ));
39
-		$this->content = sanitize_textarea_field( $this->get( 'content' ));
37
+		$this->blacklisted = isset($input['blacklisted']);
38
+		$this->category = sanitize_key( $this->get( 'category' ) );
39
+		$this->content = sanitize_textarea_field( $this->get( 'content' ) );
40 40
 		$this->custom = $this->getCustom();
41 41
 		$this->date = $this->getDate( 'date' );
42
-		$this->email = sanitize_email( $this->getUser( 'email' ));
43
-		$this->form_id = sanitize_key( $this->get( 'form_id' ));
42
+		$this->email = sanitize_email( $this->getUser( 'email' ) );
43
+		$this->form_id = sanitize_key( $this->get( 'form_id' ) );
44 44
 		$this->ip_address = $this->get( 'ip_address' );
45
-		$this->post_id = intval( $this->get( '_post_id' ));
46
-		$this->rating = intval( $this->get( 'rating' ));
45
+		$this->post_id = intval( $this->get( '_post_id' ) );
46
+		$this->rating = intval( $this->get( 'rating' ) );
47 47
 		$this->referer = $this->get( '_referer' );
48
-		$this->response = sanitize_textarea_field( $this->get( 'response' ));
49
-		$this->terms = !empty( $input['terms'] );
50
-		$this->title = sanitize_text_field( $this->get( 'title' ));
51
-		$this->url = esc_url_raw( $this->get( 'url' ));
48
+		$this->response = sanitize_textarea_field( $this->get( 'response' ) );
49
+		$this->terms = !empty($input['terms']);
50
+		$this->title = sanitize_text_field( $this->get( 'title' ) );
51
+		$this->url = esc_url_raw( $this->get( 'url' ) );
52 52
 	}
53 53
 
54 54
 	/**
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 	 */
58 58
 	protected function get( $key )
59 59
 	{
60
-		return isset( $this->request[$key] )
60
+		return isset($this->request[$key])
61 61
 			? (string)$this->request[$key]
62 62
 			: '';
63 63
 	}
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	{
70 70
 		$avatar = $this->get( 'avatar' );
71 71
 		return !filter_var( $avatar, FILTER_VALIDATE_URL, FILTER_FLAG_PATH_REQUIRED )
72
-			? (string)get_avatar_url( $this->get( 'email' ))
72
+			? (string)get_avatar_url( $this->get( 'email' ) )
73 73
 			: $avatar;
74 74
 	}
75 75
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 		$unset = apply_filters( 'site-reviews/create/unset-keys-from-custom', $unset );
87 87
 		$custom = $this->request;
88 88
 		foreach( $unset as $value ) {
89
-			unset( $custom[$value] );
89
+			unset($custom[$value]);
90 90
 		}
91 91
 		return $custom;
92 92
 	}
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
 	 */
98 98
 	protected function getDate( $key )
99 99
 	{
100
-		$date = strtotime( $this->get( $key ));
100
+		$date = strtotime( $this->get( $key ) );
101 101
 		if( $date === false ) {
102 102
 			$date = time();
103 103
 		}
104
-		return get_date_from_gmt( gmdate( 'Y-m-d H:i:s', $date ));
104
+		return get_date_from_gmt( gmdate( 'Y-m-d H:i:s', $date ) );
105 105
 	}
106 106
 
107 107
 	/**
@@ -111,13 +111,13 @@  discard block
 block discarded – undo
111 111
 	protected function getUser( $key )
112 112
 	{
113 113
 		$value = $this->get( $key );
114
-		if( empty( $value )) {
114
+		if( empty($value) ) {
115 115
 			$user = wp_get_current_user();
116 116
 			$userValues = [
117 117
 				'email' => 'user_email',
118 118
 				'name' => 'display_name',
119 119
 			];
120
-			if( $user->exists() && array_key_exists( $key, $userValues )) {
120
+			if( $user->exists() && array_key_exists( $key, $userValues ) ) {
121 121
 				return $user->{$userValues[$key]};
122 122
 			}
123 123
 		}
Please login to merge, or discard this patch.