Test Failed
Push — hotfix/fix-counts ( 1fe4ce...872cd6 )
by Paul
03:14
created
plugin/Helper.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 	{
17 17
 		$className = $this->camelCase( $name );
18 18
 		$path = ltrim( str_replace( __NAMESPACE__, '', $path ), '\\' );
19
-		return !empty( $path )
19
+		return !empty($path)
20 20
 			? __NAMESPACE__.'\\'.$path.'\\'.$className
21 21
 			: $className;
22 22
 	}
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	 */
29 29
 	public function buildMethodName( $name, $prefix = '' )
30 30
 	{
31
-		return lcfirst( $prefix.$this->buildClassName( $name ));
31
+		return lcfirst( $prefix.$this->buildClassName( $name ) );
32 32
 	}
33 33
 
34 34
 	/**
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 */
38 38
 	public function buildPropertyName( $name )
39 39
 	{
40
-		return lcfirst( $this->buildClassName( $name ));
40
+		return lcfirst( $this->buildClassName( $name ) );
41 41
 	}
42 42
 
43 43
 	/**
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 	 */
47 47
 	public function camelCase( $string )
48 48
 	{
49
-		$string = ucwords( str_replace( ['-', '_'], ' ', trim( $string )));
49
+		$string = ucwords( str_replace( ['-', '_'], ' ', trim( $string ) ) );
50 50
 		return str_replace( ' ', '', $string );
51 51
 	}
52 52
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 */
90 90
 	public function convertPathToId( $path, $prefix = '' )
91 91
 	{
92
-		return str_replace( ['[', ']'], ['-', ''], $this->convertPathToName( $path, $prefix ));
92
+		return str_replace( ['[', ']'], ['-', ''], $this->convertPathToName( $path, $prefix ) );
93 93
 	}
94 94
 
95 95
 	/**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 	{
101 101
 		$levels = explode( '.', $path );
102 102
 		return array_reduce( $levels, function( $result, $value ) {
103
-			return $result.= '['.$value.']';
103
+			return $result .= '['.$value.']';
104 104
 		}, $prefix );
105 105
 	}
106 106
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	 */
112 112
 	public function convertStringToArray( $string, $callback = null )
113 113
 	{
114
-		$array = array_map( 'trim', explode( ',', $string ));
114
+		$array = array_map( 'trim', explode( ',', $string ) );
115 115
 		return $callback
116 116
 			? array_filter( $array, $callback )
117 117
 			: array_filter( $array );
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	 */
124 124
 	public function dashCase( $string )
125 125
 	{
126
-		return str_replace( '_', '-', $this->snakeCase( $string ));
126
+		return str_replace( '_', '-', $this->snakeCase( $string ) );
127 127
 	}
128 128
 
129 129
 	/**
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 		$data = $this->consolidateArray( $data );
139 139
 		$keys = explode( '.', $path );
140 140
 		foreach( $keys as $key ) {
141
-			if( !isset( $data[$key] )) {
141
+			if( !isset($data[$key]) ) {
142 142
 				return $fallback;
143 143
 			}
144 144
 			$data = $data[$key];
@@ -184,11 +184,11 @@  discard block
 block discarded – undo
184 184
 	 */
185 185
 	public function filterInput( $key, array $request = [] )
186 186
 	{
187
-		if( isset( $request[$key] )) {
187
+		if( isset($request[$key]) ) {
188 188
 			return $request[$key];
189 189
 		}
190 190
 		$variable = filter_input( INPUT_POST, $key );
191
-		if( is_null( $variable ) && isset( $_POST[$key] )) {
191
+		if( is_null( $variable ) && isset($_POST[$key]) ) {
192 192
 			$variable = $_POST[$key];
193 193
 		}
194 194
 		return $variable;
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 	public function filterInputArray( $key )
202 202
 	{
203 203
 		$variable = filter_input( INPUT_POST, $key, FILTER_DEFAULT, FILTER_REQUIRE_ARRAY );
204
-		if( empty( $variable ) && !empty( $_POST[$key] ) && is_array( $_POST[$key] )) {
204
+		if( empty($variable) && !empty($_POST[$key]) && is_array( $_POST[$key] ) ) {
205 205
 			$variable = $_POST[$key];
206 206
 		}
207 207
 		return (array)$variable;
@@ -217,13 +217,13 @@  discard block
 block discarded – undo
217 217
 		$result = [];
218 218
 		foreach( $array as $key => $value ) {
219 219
 			$newKey = ltrim( $prefix.'.'.$key, '.' );
220
-			if( $this->isIndexedFlatArray( $value )) {
220
+			if( $this->isIndexedFlatArray( $value ) ) {
221 221
 				if( $flattenValue ) {
222 222
 					$value = '['.implode( ', ', $value ).']';
223 223
 				}
224 224
 			}
225
-			else if( is_array( $value )) {
226
-				$result = array_merge( $result, $this->flattenArray( $value, $flattenValue, $newKey ));
225
+			else if( is_array( $value ) ) {
226
+				$result = array_merge( $result, $this->flattenArray( $value, $flattenValue, $newKey ) );
227 227
 				continue;
228 228
 			}
229 229
 			$result[$newKey] = $value;
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 				Whip::IPV4 => $cloudflareIps['v4'],
246 246
 				Whip::IPV6 => $ipv6,
247 247
 			],
248
-		]);
248
+		] );
249 249
 		$whip = new Whip( Whip::ALL_METHODS, $whitelist );
250 250
 		do_action_ref_array( 'site-reviews/whip', [&$whip] );
251 251
 		return (string)$whip->getValidIpAddress();
@@ -258,14 +258,14 @@  discard block
 block discarded – undo
258 258
 	 */
259 259
 	public function insertInArray( array $array, array $insert, $key, $position = 'before' )
260 260
 	{
261
-		$keyPosition = intval( array_search( $key, array_keys( $array )));
261
+		$keyPosition = intval( array_search( $key, array_keys( $array ) ) );
262 262
 		if( 'after' == $position ) {
263 263
 			$keyPosition++;
264 264
 		}
265 265
 		if( false !== $keyPosition ) {
266 266
 			$result = array_slice( $array, 0, $keyPosition );
267 267
 			$result = array_merge( $result, $insert );
268
-			return array_merge( $result, array_slice( $array, $keyPosition ));
268
+			return array_merge( $result, array_slice( $array, $keyPosition ) );
269 269
 		}
270 270
 		return array_merge( $array, $insert );
271 271
 	}
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
 	 */
277 277
 	public function isIndexedFlatArray( $array )
278 278
 	{
279
-		if( !is_array( $array ) || array_filter( $array, 'is_array' )) {
279
+		if( !is_array( $array ) || array_filter( $array, 'is_array' ) ) {
280 280
 			return false;
281 281
 		}
282 282
 		return wp_is_numeric_array( $array );
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 	 */
290 290
 	public function prefixString( $string, $prefix = '' )
291 291
 	{
292
-		return $prefix.str_replace( $prefix, '', trim( $string ));
292
+		return $prefix.str_replace( $prefix, '', trim( $string ) );
293 293
 	}
294 294
 
295 295
 	/**
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 	public function removePrefix( $prefix, $text )
316 316
 	{
317 317
 		return 0 === strpos( $text, $prefix )
318
-			? substr( $text, strlen( $prefix ))
318
+			? substr( $text, strlen( $prefix ) )
319 319
 			: $text;
320 320
 	}
321 321
 
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 	 */
326 326
 	public function snakeCase( $string )
327 327
 	{
328
-		if( !ctype_lower( $string )) {
328
+		if( !ctype_lower( $string ) ) {
329 329
 			$string = preg_replace( '/\s+/u', '', $string );
330 330
 			$string = preg_replace( '/(.)(?=[A-Z])/u', '$1_', $string );
331 331
 			$string = function_exists( 'mb_strtolower' )
@@ -342,6 +342,6 @@  discard block
 block discarded – undo
342 342
 	 */
343 343
 	public function startsWith( $needle, $haystack )
344 344
 	{
345
-		return substr( $haystack, 0, strlen( $needle )) === $needle;
345
+		return substr( $haystack, 0, strlen( $needle ) ) === $needle;
346 346
 	}
347 347
 }
Please login to merge, or discard this patch.
plugin/Controllers/ListTableController.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -22,11 +22,11 @@  discard block
 block discarded – undo
22 22
 	public function approve()
23 23
 	{
24 24
 		if( filter_input( INPUT_GET, 'plugin' ) != Application::ID )return;
25
-		check_admin_referer( 'approve-review_'.( $postId = $this->getPostId() ));
26
-		wp_update_post([
25
+		check_admin_referer( 'approve-review_'.($postId = $this->getPostId()) );
26
+		wp_update_post( [
27 27
 			'ID' => $postId,
28 28
 			'post_status' => 'publish',
29
-		]);
29
+		] );
30 30
 		wp_safe_redirect( wp_get_referer() );
31 31
 		exit;
32 32
 	}
@@ -59,11 +59,11 @@  discard block
 block discarded – undo
59 59
 		$columns = glsr( Helper::class )->consolidateArray( $columns );
60 60
 		$postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE];
61 61
 		foreach( $postTypeColumns as $key => &$value ) {
62
-			if( !array_key_exists( $key, $columns ) || !empty( $value ))continue;
62
+			if( !array_key_exists( $key, $columns ) || !empty($value) )continue;
63 63
 			$value = $columns[$key];
64 64
 		}
65
-		if( count( glsr( Database::class )->getReviewsMeta( 'review_type' )) < 2 ) {
66
-			unset( $postTypeColumns['review_type'] );
65
+		if( count( glsr( Database::class )->getReviewsMeta( 'review_type' ) ) < 2 ) {
66
+			unset($postTypeColumns['review_type']);
67 67
 		}
68 68
 		return array_filter( $postTypeColumns, 'strlen' );
69 69
 	}
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 	 */
106 106
 	public function filterPostStates( $postStates, $post ) {
107 107
 		$postStates = glsr( Helper::class )->consolidateArray( $postStates );
108
-		if( glsr_get( $post, 'post_type' ) == Application::POST_TYPE && array_key_exists( 'pending', $postStates )) {
108
+		if( glsr_get( $post, 'post_type' ) == Application::POST_TYPE && array_key_exists( 'pending', $postStates ) ) {
109 109
 			$postStates['pending'] = __( 'Unapproved', 'site-reviews' );
110 110
 		}
111 111
 		return $postStates;
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 		if( glsr_get( $post, 'post_type' ) != Application::POST_TYPE || $post->post_status == 'trash' ) {
123 123
 			return $actions;
124 124
 		}
125
-		unset( $actions['inline hide-if-no-js'] ); //Remove Quick-edit
125
+		unset($actions['inline hide-if-no-js']); //Remove Quick-edit
126 126
 		$rowActions = [
127 127
 			'approve' => esc_attr__( 'Approve', 'site-reviews' ),
128 128
 			'unapprove' => esc_attr__( 'Unapprove', 'site-reviews' ),
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 					admin_url( 'post.php?post='.$post->ID.'&action='.$key.'&plugin='.Application::ID ),
137 137
 					$key.'-review_'.$post->ID
138 138
 				),
139
-			]);
139
+			] );
140 140
 		}
141 141
 		return $newActions + glsr( Helper::class )->consolidateArray( $actions );
142 142
 	}
@@ -150,9 +150,9 @@  discard block
 block discarded – undo
150 150
 	{
151 151
 		$columns = glsr( Helper::class )->consolidateArray( $columns );
152 152
 		$postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE];
153
-		unset( $postTypeColumns['cb'] );
153
+		unset($postTypeColumns['cb']);
154 154
 		foreach( $postTypeColumns as $key => $value ) {
155
-			if( glsr( Helper::class )->startsWith( 'taxonomy', $key ))continue;
155
+			if( glsr( Helper::class )->startsWith( 'taxonomy', $key ) )continue;
156 156
 			$columns[$key] = $key;
157 157
 		}
158 158
 		return $columns;
@@ -170,18 +170,18 @@  discard block
 block discarded – undo
170 170
 	 */
171 171
 	public function filterStatusText( $translation, $single, $plural, $number, $domain )
172 172
 	{
173
-		if( $this->canModifyTranslation( $domain )) {
173
+		if( $this->canModifyTranslation( $domain ) ) {
174 174
 			$strings = [
175 175
 				'Published' => __( 'Approved', 'site-reviews' ),
176 176
 				'Pending' => __( 'Unapproved', 'site-reviews' ),
177 177
 			];
178 178
 			foreach( $strings as $search => $replace ) {
179 179
 				if( strpos( $single, $search ) === false )continue;
180
-				$translation = $this->getTranslation([
180
+				$translation = $this->getTranslation( [
181 181
 					'number' => $number,
182 182
 					'plural' => str_replace( $search, $replace, $plural ),
183 183
 					'single' => str_replace( $search, $replace, $single ),
184
-				]);
184
+				] );
185 185
 			}
186 186
 		}
187 187
 		return $translation;
@@ -228,9 +228,9 @@  discard block
 block discarded – undo
228 228
 	 */
229 229
 	public function saveBulkEditFields( $postId )
230 230
 	{
231
-		if( !current_user_can( 'edit_posts' ))return;
231
+		if( !current_user_can( 'edit_posts' ) )return;
232 232
 		$assignedTo = filter_input( INPUT_GET, 'assigned_to' );
233
-		if( $assignedTo && get_post( $assignedTo )) {
233
+		if( $assignedTo && get_post( $assignedTo ) ) {
234 234
 			update_post_meta( $postId, 'assigned_to', $assignedTo );
235 235
 		}
236 236
 	}
@@ -241,10 +241,10 @@  discard block
 block discarded – undo
241 241
 	 */
242 242
 	public function setQueryForColumn( WP_Query $query )
243 243
 	{
244
-		if( !$this->hasPermission( $query ))return;
244
+		if( !$this->hasPermission( $query ) )return;
245 245
 		$this->setMetaQuery( $query, [
246 246
 			'rating', 'review_type',
247
-		]);
247
+		] );
248 248
 		$this->setOrderby( $query );
249 249
 	}
250 250
 
@@ -255,11 +255,11 @@  discard block
 block discarded – undo
255 255
 	public function unapprove()
256 256
 	{
257 257
 		if( filter_input( INPUT_GET, 'plugin' ) != Application::ID )return;
258
-		check_admin_referer( 'unapprove-review_'.( $postId = $this->getPostId() ));
259
-		wp_update_post([
258
+		check_admin_referer( 'unapprove-review_'.($postId = $this->getPostId()) );
259
+		wp_update_post( [
260 260
 			'ID' => $postId,
261 261
 			'post_status' => 'pending',
262
-		]);
262
+		] );
263 263
 		wp_safe_redirect( wp_get_referer() );
264 264
 		exit;
265 265
 	}
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 			'single' => '',
290 290
 			'text' => '',
291 291
 		];
292
-		$args = (object) wp_parse_args( $args, $defaults );
292
+		$args = (object)wp_parse_args( $args, $defaults );
293 293
 		$translations = get_translations_for_domain( Application::ID );
294 294
 		return $args->text
295 295
 			? $translations->translate( $args->text )
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
 	protected function setMetaQuery( WP_Query $query, array $metaKeys )
315 315
 	{
316 316
 		foreach( $metaKeys as $key ) {
317
-			if( !( $value = filter_input( INPUT_GET, $key )))continue;
317
+			if( !($value = filter_input( INPUT_GET, $key )) )continue;
318 318
 			$metaQuery = (array)$query->get( 'meta_query' );
319 319
 			$metaQuery[] = [
320 320
 				'key' => $key,
@@ -331,8 +331,8 @@  discard block
 block discarded – undo
331 331
 	{
332 332
 		$orderby = $query->get( 'orderby' );
333 333
 		$columns = glsr()->postTypeColumns[Application::POST_TYPE];
334
-		unset( $columns['cb'], $columns['title'], $columns['date'] );
335
-		if( in_array( $orderby, array_keys( $columns ))) {
334
+		unset($columns['cb'], $columns['title'], $columns['date']);
335
+		if( in_array( $orderby, array_keys( $columns ) ) ) {
336 336
 			if( $orderby == 'reviewer' ) {
337 337
 				$orderby = 'author';
338 338
 			}
Please login to merge, or discard this patch.
plugin/Controllers/EditorController.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -133,13 +133,13 @@  discard block
 block discarded – undo
133 133
 	 */
134 134
 	public function renderAssignedToMetabox( $post )
135 135
 	{
136
-		if( !$this->isReviewPostType( $post ))return;
136
+		if( !$this->isReviewPostType( $post ) )return;
137 137
 		$assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true );
138 138
 		wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false );
139 139
 		glsr()->render( 'partials/editor/metabox-assigned-to', [
140 140
 			'id' => $assignedTo,
141 141
 			'template' => $this->buildAssignedToTemplate( $assignedTo, $post ),
142
-		]);
142
+		] );
143 143
 	}
144 144
 
145 145
 	/**
@@ -149,12 +149,12 @@  discard block
 block discarded – undo
149 149
 	 */
150 150
 	public function renderDetailsMetaBox( $post )
151 151
 	{
152
-		if( !$this->isReviewPostType( $post ))return;
152
+		if( !$this->isReviewPostType( $post ) )return;
153 153
 		$review = glsr( ReviewManager::class )->single( $post );
154 154
 		glsr()->render( 'partials/editor/metabox-details', [
155 155
 			'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ),
156 156
 			'metabox' => $this->normalizeDetailsMetaBox( $review ),
157
-		]);
157
+		] );
158 158
 	}
159 159
 
160 160
 	/**
@@ -163,14 +163,14 @@  discard block
 block discarded – undo
163 163
 	 */
164 164
 	public function renderPinnedInPublishMetaBox()
165 165
 	{
166
-		if( !$this->isReviewPostType( get_post() ))return;
166
+		if( !$this->isReviewPostType( get_post() ) )return;
167 167
 		glsr( Template::class )->render( 'partials/editor/pinned', [
168 168
 			'context' => [
169 169
 				'no' => __( 'No', 'site-reviews' ),
170 170
 				'yes' => __( 'Yes', 'site-reviews' ),
171 171
 			],
172
-			'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true )),
173
-		]);
172
+			'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true ) ),
173
+		] );
174 174
 	}
175 175
 
176 176
 	/**
@@ -180,11 +180,11 @@  discard block
 block discarded – undo
180 180
 	 */
181 181
 	public function renderResponseMetaBox( $post )
182 182
 	{
183
-		if( !$this->isReviewPostType( $post ))return;
183
+		if( !$this->isReviewPostType( $post ) )return;
184 184
 		wp_nonce_field( 'response', '_nonce-response', false );
185 185
 		glsr()->render( 'partials/editor/metabox-response', [
186 186
 			'response' => get_post_meta( $post->ID, 'response', true ),
187
-		]);
187
+		] );
188 188
 	}
189 189
 
190 190
 	/**
@@ -194,11 +194,11 @@  discard block
 block discarded – undo
194 194
 	 */
195 195
 	public function renderReviewEditor( $post )
196 196
 	{
197
-		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return;
197
+		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return;
198 198
 		glsr()->render( 'partials/editor/review', [
199 199
 			'post' => $post,
200 200
 			'response' => get_post_meta( $post->ID, 'response', true ),
201
-		]);
201
+		] );
202 202
 	}
203 203
 
204 204
 	/**
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 		$screen = glsr_current_screen();
211 211
 		if( $screen->base != 'post' || $screen->post_type != Application::POST_TYPE )return;
212 212
 		add_action( 'edit_form_after_title', [$this, 'renderReviewEditor'] );
213
-		add_action( 'edit_form_top',         [$this, 'renderReviewNotice'] );
213
+		add_action( 'edit_form_top', [$this, 'renderReviewNotice'] );
214 214
 	}
215 215
 
216 216
 	/**
@@ -220,16 +220,16 @@  discard block
 block discarded – undo
220 220
 	 */
221 221
 	public function renderReviewNotice( $post )
222 222
 	{
223
-		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return;
223
+		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return;
224 224
 		glsr( Notice::class )->addWarning( sprintf(
225 225
 			__( '%s reviews are read-only.', 'site-reviews' ),
226 226
 			glsr( Columns::class )->buildColumnReviewType( $post->ID )
227
-		));
227
+		) );
228 228
 		glsr( Template::class )->render( 'partials/editor/notice', [
229 229
 			'context' => [
230 230
 				'notices' => glsr( Notice::class )->get(),
231 231
 			],
232
-		]);
232
+		] );
233 233
 	}
234 234
 
235 235
 	/**
@@ -240,12 +240,12 @@  discard block
 block discarded – undo
240 240
 	 */
241 241
 	public function renderTaxonomyMetabox( $post )
242 242
 	{
243
-		if( !$this->isReviewPostType( $post ))return;
243
+		if( !$this->isReviewPostType( $post ) )return;
244 244
 		glsr()->render( 'partials/editor/metabox-categories', [
245 245
 			'post' => $post,
246 246
 			'tax_name' => Application::TAXONOMY,
247 247
 			'taxonomy' => get_taxonomy( Application::TAXONOMY ),
248
-		]);
248
+		] );
249 249
 	}
250 250
 
251 251
 	/**
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
 	public function revertReview()
257 257
 	{
258 258
 		if( filter_input( INPUT_GET, 'plugin' ) != Application::ID )return;
259
-		check_admin_referer( 'revert-review_'.( $postId = $this->getPostId() ));
259
+		check_admin_referer( 'revert-review_'.($postId = $this->getPostId()) );
260 260
 		glsr( ReviewManager::class )->revert( $postId );
261 261
 		$this->redirect( $postId, 52 );
262 262
 	}
@@ -279,13 +279,13 @@  discard block
 block discarded – undo
279 279
 	protected function buildAssignedToTemplate( $assignedTo, WP_Post $post )
280 280
 	{
281 281
 		$assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo );
282
-		if( !( $assignedPost instanceof WP_Post ))return;
282
+		if( !($assignedPost instanceof WP_Post) )return;
283 283
 		return glsr( Template::class )->build( 'partials/editor/assigned-post', [
284 284
 			'context' => [
285 285
 				'data.url' => (string)get_permalink( $assignedPost ),
286 286
 				'data.title' => get_the_title( $assignedPost ),
287 287
 			],
288
-		]);
288
+		] );
289 289
 	}
290 290
 
291 291
 	/**
@@ -310,13 +310,13 @@  discard block
 block discarded – undo
310 310
 				'class' => 'button button-large',
311 311
 				'href' => $revertUrl,
312 312
 				'id' => 'revert',
313
-			]);
313
+			] );
314 314
 		}
315 315
 		return glsr( Builder::class )->button( __( 'Nothing to Revert', 'site-reviews' ), [
316 316
 			'class' => 'button button-large',
317 317
 			'disabled' => true,
318 318
 			'id' => 'revert',
319
-		]);
319
+		] );
320 320
 	}
321 321
 
322 322
 	/**
@@ -329,11 +329,11 @@  discard block
 block discarded – undo
329 329
 		$reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes )
330 330
 			? glsr()->reviewTypes[$review->review_type]
331 331
 			: __( 'Unknown', 'site-reviews' );
332
-		if( !empty( $review->url )) {
332
+		if( !empty($review->url) ) {
333 333
 			$reviewType = glsr( Builder::class )->a( $reviewType, [
334 334
 				'href' => $review->url,
335 335
 				'target' => '_blank',
336
-			]);
336
+			] );
337 337
 		}
338 338
 		return $reviewType;
339 339
 	}
@@ -362,16 +362,16 @@  discard block
 block discarded – undo
362 362
 	 */
363 363
 	protected function normalizeDetailsMetaBox( Review $review )
364 364
 	{
365
-		$user = empty( $review->user_id )
365
+		$user = empty($review->user_id)
366 366
 			? __( 'Unregistered user', 'site-reviews' )
367 367
 			: glsr( Builder::class )->a( get_the_author_meta( 'display_name', $review->user_id ), [
368 368
 				'href' => get_author_posts_url( $review->user_id ),
369
-			]);
370
-		$email = empty( $review->email )
369
+			] );
370
+		$email = empty($review->email)
371 371
 			? '&mdash;'
372 372
 			: glsr( Builder::class )->a( $review->email, [
373 373
 				'href' => 'mailto:'.$review->email.'?subject='.esc_attr( __( 'RE:', 'site-reviews' ).' '.$review->title ),
374
-			]);
374
+			] );
375 375
 		$metabox = [
376 376
 			__( 'Rating', 'site-reviews' ) => glsr_star_rating( $review->rating ),
377 377
 			__( 'Type', 'site-reviews' ) => $this->getReviewType( $review ),
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 			__( 'IP Address', 'site-reviews' ) => $review->ip_address,
383 383
 			__( 'Avatar', 'site-reviews' ) => sprintf( '<img src="%s" width="96">', $review->avatar ),
384 384
 		];
385
-		return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review ));
385
+		return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review ) );
386 386
 	}
387 387
 
388 388
 	/**
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 		$redirectUri = $hasReferer
400 400
 			? remove_query_arg( ['deleted', 'ids', 'trashed', 'untrashed'], $referer )
401 401
 			: get_edit_post_link( $postId );
402
-		wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri ));
402
+		wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri ) );
403 403
 		exit;
404 404
 	}
405 405
 }
Please login to merge, or discard this patch.
plugin/Modules/Html/Fields/Field.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 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
 	/**
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
 			wp_parse_args( $args, static::defaults() ),
42 42
 			static::required()
43 43
 		);
44
-		$merged['class'] = implode( ' ', static::mergedAttribute( 'class', ' ', $args ));
45
-		$merged['style'] = implode( ';', static::mergedAttribute( 'style', ';', $args ));
44
+		$merged['class'] = implode( ' ', static::mergedAttribute( 'class', ' ', $args ) );
45
+		$merged['style'] = implode( ';', static::mergedAttribute( 'style', ';', $args ) );
46 46
 		return $merged;
47 47
 	}
48 48
 
@@ -54,10 +54,10 @@  discard block
 block discarded – undo
54 54
 	public static function mergedAttribute( $key, $delimiter, array $args )
55 55
 	{
56 56
 		return array_filter( array_merge(
57
-			explode( $delimiter, glsr_get( $args, $key )),
58
-			explode( $delimiter, glsr_get( static::defaults(), $key )),
59
-			explode( $delimiter, glsr_get( static::required(), $key ))
60
-		));
57
+			explode( $delimiter, glsr_get( $args, $key ) ),
58
+			explode( $delimiter, glsr_get( static::defaults(), $key ) ),
59
+			explode( $delimiter, glsr_get( static::required(), $key ) )
60
+		) );
61 61
 	}
62 62
 
63 63
 	/**
Please login to merge, or discard this patch.
plugin/Modules/Html/Field.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 			'is_valid' => true,
28 28
 			'is_widget' => false,
29 29
 			'path' => '',
30
-		]);
30
+		] );
31 31
 		$this->normalize();
32 32
 	}
33 33
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 	{
47 47
 		if( !$this->field['is_valid'] )return;
48 48
 		if( $this->field['is_raw'] ) {
49
-			return glsr( Builder::class )->{$this->field['type']}( $this->field );
49
+			return glsr( Builder::class )->{$this->field['type']}($this->field);
50 50
 		}
51 51
 		if( !$this->field['is_setting'] ) {
52 52
 			return $this->buildField();
@@ -75,15 +75,15 @@  discard block
 block discarded – undo
75 75
 				'class' => $this->getFieldClass(),
76 76
 				'errors' => $this->getFieldErrors(),
77 77
 				'field' => glsr( Builder::class )->raw( $this->field ),
78
-				'label' => glsr( Builder::class )->label([
78
+				'label' => glsr( Builder::class )->label( [
79 79
 					'class' => 'glsr-'.$this->field['type'].'-label',
80 80
 					'for' => $this->field['id'],
81 81
 					'is_public' => $this->field['is_public'],
82 82
 					'text' => $this->field['label'].'<span></span>',
83 83
 					'type' => $this->field['type'],
84
-				]),
84
+				] ),
85 85
 			],
86
-		]);
86
+		] );
87 87
 		return apply_filters( 'site-reviews/rendered/field', $field, $this->field['type'], $this->field );
88 88
 	}
89 89
 
@@ -95,10 +95,10 @@  discard block
 block discarded – undo
95 95
 		return glsr( Template::class )->build( 'partials/form/table-row', [
96 96
 			'context' => [
97 97
 				'class' => $this->getFieldClass(),
98
-				'field' => glsr( Builder::class )->{$this->field['type']}( $this->field ),
98
+				'field' => glsr( Builder::class )->{$this->field['type']}($this->field),
99 99
 				'label' => glsr( Builder::class )->label( $this->field['legend'], ['for' => $this->field['id']] ),
100 100
 			],
101
-		]);
101
+		] );
102 102
 	}
103 103
 
104 104
 	/**
@@ -107,16 +107,16 @@  discard block
 block discarded – undo
107 107
 	protected function buildSettingMultiField()
108 108
 	{
109 109
 		$dependsOn = $this->getFieldDependsOn();
110
-		unset( $this->field['data-depends'] );
110
+		unset($this->field['data-depends']);
111 111
 		return glsr( Template::class )->build( 'partials/form/table-row-multiple', [
112 112
 			'context' => [
113 113
 				'class' => $this->getFieldClass(),
114 114
 				'depends_on' => $dependsOn,
115
-				'field' => glsr( Builder::class )->{$this->field['type']}( $this->field ),
115
+				'field' => glsr( Builder::class )->{$this->field['type']}($this->field),
116 116
 				'label' => glsr( Builder::class )->label( $this->field['legend'], ['for' => $this->field['id']] ),
117 117
 				'legend' => $this->field['legend'],
118 118
 			],
119
-		]);
119
+		] );
120 120
 	}
121 121
 
122 122
 	/**
@@ -125,13 +125,13 @@  discard block
 block discarded – undo
125 125
 	protected function getFieldClass()
126 126
 	{
127 127
 		$classes = [];
128
-		if( !empty( $this->field['errors'] )) {
128
+		if( !empty($this->field['errors']) ) {
129 129
 			$classes[] = 'glsr-has-error';
130 130
 		}
131 131
 		if( $this->field['is_hidden'] ) {
132 132
 			$classes[] = 'hidden';
133 133
 		}
134
-		if( !empty( $this->field['required'] )) {
134
+		if( !empty($this->field['required']) ) {
135 135
 			$classes[] = 'glsr-required';
136 136
 		}
137 137
 		$classes = apply_filters( 'site-reviews/rendered/field/classes', $classes, $this->field );
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 	 */
144 144
 	protected function getFieldDependsOn()
145 145
 	{
146
-		return !empty( $this->field['data-depends'] )
146
+		return !empty($this->field['data-depends'])
147 147
 			? $this->field['data-depends']
148 148
 			: '';
149 149
 	}
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 	 */
154 154
 	protected function getFieldErrors()
155 155
 	{
156
-		if( empty( $this->field['errors'] ) || !is_array( $this->field['errors'] ))return;
156
+		if( empty($this->field['errors']) || !is_array( $this->field['errors'] ) )return;
157 157
 		$errors = array_reduce( $this->field['errors'], function( $carry, $error ) {
158 158
 			return $carry.glsr( Builder::class )->span( $error, ['class' => 'glsr-field-error'] );
159 159
 		});
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 			'context' => [
162 162
 				'errors' => $errors,
163 163
 			],
164
-		]);
164
+		] );
165 165
 	}
166 166
 
167 167
 	/**
@@ -184,13 +184,13 @@  discard block
 block discarded – undo
184 184
 			'name', 'type',
185 185
 		];
186 186
 		foreach( $requiredValues as $value ) {
187
-			if( isset( $this->field[$value] ))continue;
187
+			if( isset($this->field[$value]) )continue;
188 188
 			$missingValues[] = $value;
189 189
 			$this->field['is_valid'] = false;
190 190
 		}
191
-		if( !empty( $missingValues )) {
191
+		if( !empty($missingValues) ) {
192 192
 			glsr_log()
193
-				->warning( 'Field is missing: '.implode( ', ', $missingValues ))
193
+				->warning( 'Field is missing: '.implode( ', ', $missingValues ) )
194 194
 				->debug( $this->field );
195 195
 		}
196 196
 		return $this->field['is_valid'];
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 		if( !$this->isFieldValid() )return;
205 205
 		$this->field['path'] = $this->field['name'];
206 206
 		$className = glsr( Helper::class )->buildClassName( $this->field['type'], __NAMESPACE__.'\Fields' );
207
-		if( class_exists( $className )) {
207
+		if( class_exists( $className ) ) {
208 208
 			$this->field = $className::merge( $this->field );
209 209
 		}
210 210
 		$this->normalizeFieldId();
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 	 */
217 217
 	protected function normalizeFieldId()
218 218
 	{
219
-		if( isset( $this->field['id'] ) || $this->field['is_raw'] )return;
219
+		if( isset($this->field['id']) || $this->field['is_raw'] )return;
220 220
 		$this->field['id'] = glsr( Helper::class )->convertPathToId(
221 221
 			$this->field['path'],
222 222
 			$this->getFieldPrefix()
Please login to merge, or discard this patch.
plugin/Modules/Html/Builder.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	{
67 67
 		$instance = new static;
68 68
 		$instance->setTagFromMethod( $method );
69
-		call_user_func_array( [$instance, 'normalize'], $args += ['',''] );
69
+		call_user_func_array( [$instance, 'normalize'], $args += ['', ''] );
70 70
 		$tags = array_merge( static::TAGS_FORM, static::TAGS_SINGLE, static::TAGS_STRUCTURE, static::TAGS_TEXT );
71 71
 		do_action_ref_array( 'site-reviews/builder', [$instance] );
72 72
 		$generatedTag = in_array( $instance->tag, $tags )
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
 			'render' => 'is_bool',
92 92
 			'tag' => 'is_string',
93 93
 		];
94
-		if( !isset( $properties[$property] )
95
-			|| empty( array_filter( [$value], $properties[$property] ))
94
+		if( !isset($properties[$property])
95
+			|| empty(array_filter( [$value], $properties[$property] ))
96 96
 		)return;
97 97
 		$this->$property = $value;
98 98
 	}
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	 */
103 103
 	public function getClosingTag()
104 104
 	{
105
-		if( empty( $this->tag ))return;
105
+		if( empty($this->tag) )return;
106 106
 		return '</'.$this->tag.'>';
107 107
 	}
108 108
 
@@ -111,8 +111,8 @@  discard block
 block discarded – undo
111 111
 	 */
112 112
 	public function getOpeningTag()
113 113
 	{
114
-		if( empty( $this->tag ))return;
115
-		$attributes = glsr( Attributes::class )->{$this->tag}( $this->args )->toString();
114
+		if( empty($this->tag) )return;
115
+		$attributes = glsr( Attributes::class )->{$this->tag}($this->args)->toString();
116 116
 		return '<'.trim( $this->tag.' '.$attributes ).'>';
117 117
 	}
118 118
 
@@ -121,10 +121,10 @@  discard block
 block discarded – undo
121 121
 	 */
122 122
 	public function getTag()
123 123
 	{
124
-		if( in_array( $this->tag, static::TAGS_SINGLE )) {
124
+		if( in_array( $this->tag, static::TAGS_SINGLE ) ) {
125 125
 			return $this->getOpeningTag();
126 126
 		}
127
-		if( !in_array( $this->tag, static::TAGS_FORM )) {
127
+		if( !in_array( $this->tag, static::TAGS_FORM ) ) {
128 128
 			return $this->buildDefaultTag();
129 129
 		}
130 130
 		return call_user_func( [$this, 'buildForm'.ucfirst( $this->tag )] ).$this->buildFieldDescription();
@@ -135,8 +135,8 @@  discard block
 block discarded – undo
135 135
 	 */
136 136
 	public function raw( array $field )
137 137
 	{
138
-		unset( $field['label'] );
139
-		return $this->{$field['type']}( $field );
138
+		unset($field['label']);
139
+		return $this->{$field['type']}($field);
140 140
 	}
141 141
 
142 142
 	/**
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 	protected function buildCustomField()
146 146
 	{
147 147
 		$className = $this->getCustomFieldClassName();
148
-		if( class_exists( $className )) {
148
+		if( class_exists( $className ) ) {
149 149
 			return (new $className( $this ))->build();
150 150
 		}
151 151
 		glsr_log()->error( 'Field missing: '.$className );
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 	 */
157 157
 	protected function buildDefaultTag( $text = '' )
158 158
 	{
159
-		if( empty( $text )) {
159
+		if( empty($text) ) {
160 160
 			$text = $this->args['text'];
161 161
 		}
162 162
 		return $this->getOpeningTag().$text.$this->getClosingTag();
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 	 */
168 168
 	protected function buildFieldDescription()
169 169
 	{
170
-		if( empty( $this->args['description'] ))return;
170
+		if( empty($this->args['description']) )return;
171 171
 		if( $this->args['is_widget'] ) {
172 172
 			return $this->small( $this->args['description'] );
173 173
 		}
@@ -179,13 +179,13 @@  discard block
 block discarded – undo
179 179
 	 */
180 180
 	protected function buildFormInput()
181 181
 	{
182
-		if( !in_array( $this->args['type'], ['checkbox', 'radio'] )) {
183
-			if( isset( $this->args['multiple'] )) {
184
-				$this->args['name'].= '[]';
182
+		if( !in_array( $this->args['type'], ['checkbox', 'radio'] ) ) {
183
+			if( isset($this->args['multiple']) ) {
184
+				$this->args['name'] .= '[]';
185 185
 			}
186 186
 			return $this->buildFormLabel().$this->getOpeningTag();
187 187
 		}
188
-		return empty( $this->args['options'] )
188
+		return empty($this->args['options'])
189 189
 			? $this->buildFormInputChoice()
190 190
 			: $this->buildFormInputMultiChoice();
191 191
 	}
@@ -195,19 +195,19 @@  discard block
 block discarded – undo
195 195
 	 */
196 196
 	protected function buildFormInputChoice()
197 197
 	{
198
-		if( !empty( $this->args['text'] )) {
198
+		if( !empty($this->args['text']) ) {
199 199
 			$this->args['label'] = $this->args['text'];
200 200
 		}
201 201
 		if( !$this->args['is_public'] ) {
202
-			return $this->buildFormLabel([
202
+			return $this->buildFormLabel( [
203 203
 				'class' => 'glsr-'.$this->args['type'].'-label',
204 204
 				'text' => $this->getOpeningTag().' '.$this->args['label'].'<span></span>',
205
-			]);
205
+			] );
206 206
 		}
207
-		return $this->getOpeningTag().$this->buildFormLabel([
207
+		return $this->getOpeningTag().$this->buildFormLabel( [
208 208
 			'class' => 'glsr-'.$this->args['type'].'-label',
209 209
 			'text' => $this->args['label'].'<span></span>',
210
-		]);
210
+		] );
211 211
 	}
212 212
 
213 213
 	/**
@@ -216,22 +216,22 @@  discard block
 block discarded – undo
216 216
 	protected function buildFormInputMultiChoice()
217 217
 	{
218 218
 		if( $this->args['type'] == 'checkbox' ) {
219
-			$this->args['name'].= '[]';
219
+			$this->args['name'] .= '[]';
220 220
 		}
221 221
 		$index = 0;
222
-		$options = array_reduce( array_keys( $this->args['options'] ), function( $carry, $key ) use( &$index ) {
222
+		$options = array_reduce( array_keys( $this->args['options'] ), function( $carry, $key ) use(&$index) {
223 223
 			return $carry.$this->li( $this->{$this->args['type']}([
224 224
 				'checked' => in_array( $key, (array)$this->args['value'] ),
225 225
 				'id' => $this->args['id'].'-'.$index++,
226 226
 				'name' => $this->args['name'],
227 227
 				'text' => $this->args['options'][$key],
228 228
 				'value' => $key,
229
-			]));
229
+			]) );
230 230
 		});
231 231
 		return $this->ul( $options, [
232 232
 			'class' => $this->args['class'],
233 233
 			'id' => $this->args['id'],
234
-		]);
234
+		] );
235 235
 	}
236 236
 
237 237
 	/**
@@ -239,13 +239,13 @@  discard block
 block discarded – undo
239 239
 	 */
240 240
 	protected function buildFormLabel( array $customArgs = [] )
241 241
 	{
242
-		if( empty( $this->args['label'] ) || $this->args['type'] == 'hidden' )return;
242
+		if( empty($this->args['label']) || $this->args['type'] == 'hidden' )return;
243 243
 		return $this->label( wp_parse_args( $customArgs, [
244 244
 			'for' => $this->args['id'],
245 245
 			'is_public' => $this->args['is_public'],
246 246
 			'text' => $this->args['label'],
247 247
 			'type' => $this->args['type'],
248
-		]));
248
+		] ) );
249 249
 	}
250 250
 
251 251
 	/**
@@ -262,11 +262,11 @@  discard block
 block discarded – undo
262 262
 	protected function buildFormSelectOptions()
263 263
 	{
264 264
 		return array_reduce( array_keys( $this->args['options'] ), function( $carry, $key ) {
265
-			return $carry.$this->option([
265
+			return $carry.$this->option( [
266 266
 				'selected' => $this->args['value'] == $key,
267 267
 				'text' => $this->args['options'][$key],
268 268
 				'value' => $key,
269
-			]);
269
+			] );
270 270
 		});
271 271
 	}
272 272
 
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
 	protected function mergeArgsWithRequiredDefaults()
303 303
 	{
304 304
 		$className = $this->getCustomFieldClassName();
305
-		if( class_exists( $className )) {
305
+		if( class_exists( $className ) ) {
306 306
 			$this->args = $className::merge( $this->args );
307 307
 		}
308 308
 		$this->args = glsr( BuilderDefaults::class )->merge( $this->args );
@@ -314,16 +314,16 @@  discard block
 block discarded – undo
314 314
 	 */
315 315
 	protected function normalize( ...$params )
316 316
 	{
317
-		if( is_string( $params[0] ) || is_numeric( $params[0] )) {
317
+		if( is_string( $params[0] ) || is_numeric( $params[0] ) ) {
318 318
 			$this->setNameOrTextAttributeForTag( $params[0] );
319 319
 		}
320
-		if( is_array( $params[0] )) {
320
+		if( is_array( $params[0] ) ) {
321 321
 			$this->args += $params[0];
322 322
 		}
323
-		else if( is_array( $params[1] )) {
323
+		else if( is_array( $params[1] ) ) {
324 324
 			$this->args += $params[1];
325 325
 		}
326
-		if( !isset( $this->args['is_public'] )) {
326
+		if( !isset($this->args['is_public']) ) {
327 327
 			$this->args['is_public'] = false;
328 328
 		}
329 329
 	}
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 	protected function setTagFromMethod( $method )
348 348
 	{
349 349
 		$this->tag = strtolower( $method );
350
-		if( in_array( $this->tag, static::INPUT_TYPES )) {
350
+		if( in_array( $this->tag, static::INPUT_TYPES ) ) {
351 351
 			$this->args['type'] = $this->tag;
352 352
 			$this->tag = 'input';
353 353
 		}
Please login to merge, or discard this patch.
plugin/Modules/Style.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -50,12 +50,12 @@  discard block
 block discarded – undo
50 50
 			'templates/form/submit-button',
51 51
 			'templates/reviews-form',
52 52
 		];
53
-		if( !preg_match( '('.implode( '|', $styledViews ).')', $view )) {
53
+		if( !preg_match( '('.implode( '|', $styledViews ).')', $view ) ) {
54 54
 			return $view;
55 55
 		}
56 56
 		$views = $this->generatePossibleViews( $view );
57 57
 		foreach( $views as $possibleView ) {
58
-			if( !file_exists( glsr()->file( $possibleView )))continue;
58
+			if( !file_exists( glsr()->file( $possibleView ) ) )continue;
59 59
 			return glsr( Helper::class )->removePrefix( 'views/', $possibleView );
60 60
 		}
61 61
 		return $view;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 	 */
89 89
 	public function modifyField( Builder $instance )
90 90
 	{
91
-		if( !$this->isPublicInstance( $instance ) || empty( array_filter( $this->fields )))return;
91
+		if( !$this->isPublicInstance( $instance ) || empty(array_filter( $this->fields )) )return;
92 92
 		call_user_func_array( [$this, 'customize'], [$instance] );
93 93
 	}
94 94
 
@@ -105,10 +105,10 @@  discard block
 block discarded – undo
105 105
 	 */
106 106
 	protected function customize( Builder $instance )
107 107
 	{
108
-		if( !array_key_exists( $instance->tag, $this->fields ))return;
109
-		$args = wp_parse_args( $instance->args, array_fill_keys( ['class', 'type'], '' ));
108
+		if( !array_key_exists( $instance->tag, $this->fields ) )return;
109
+		$args = wp_parse_args( $instance->args, array_fill_keys( ['class', 'type'], '' ) );
110 110
 		$key = $instance->tag.'_'.$args['type'];
111
-		$classes = glsr_get( $this->fields, $key, glsr_get( $this->fields, $instance->tag ));
111
+		$classes = glsr_get( $this->fields, $key, glsr_get( $this->fields, $instance->tag ) );
112 112
 		$instance->args['class'] = trim( $args['class'].' '.$classes );
113 113
 		do_action_ref_array( 'site-reviews/customize/'.$this->style, [$instance] );
114 114
 	}
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 		$args = wp_parse_args( $instance->args, [
141 141
 			'is_public' => false,
142 142
 			'is_raw' => false,
143
-		]);
143
+		] );
144 144
 		if( is_admin() || !$args['is_public'] || $args['is_raw'] ) {
145 145
 			return false;
146 146
 		}
Please login to merge, or discard this patch.
plugin/Controllers/ReviewController.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -26,15 +26,15 @@  discard block
 block discarded – undo
26 26
 	{
27 27
 		sort( $newTTIds );
28 28
 		sort( $oldTTIds );
29
-		if( $newTTIds === $oldTTIds || !$this->isReviewPostId( $postId ))return;
30
-		$review = glsr( ReviewManager::class )->single( get_post( $postId ));
29
+		if( $newTTIds === $oldTTIds || !$this->isReviewPostId( $postId ) )return;
30
+		$review = glsr( ReviewManager::class )->single( get_post( $postId ) );
31 31
 		$ignoredIds = array_intersect( $oldTTIds, $newTTIds );
32 32
 		$decreasedIds = array_diff( $oldTTIds, $ignoredIds );
33 33
 		$increasedIds = array_diff( $newTTIds, $ignoredIds );
34
-		if( $review->term_ids = glsr( Database::class )->getTermIds( $decreasedIds, 'term_taxonomy_id' )) {
34
+		if( $review->term_ids = glsr( Database::class )->getTermIds( $decreasedIds, 'term_taxonomy_id' ) ) {
35 35
 			glsr( CountsManager::class )->decreaseTermCounts( $review );
36 36
 		}
37
-		if( $review->term_ids = glsr( Database::class )->getTermIds( $increasedIds, 'term_taxonomy_id' )) {
37
+		if( $review->term_ids = glsr( Database::class )->getTermIds( $increasedIds, 'term_taxonomy_id' ) ) {
38 38
 			glsr( CountsManager::class )->increaseTermCounts( $review );
39 39
 		}
40 40
 	}
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
 	 */
49 49
 	public function onAfterChangeStatus( $newStatus, $oldStatus, $post )
50 50
 	{
51
-		if( glsr_get( $post, 'post_type') != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] ))return;
52
-		$review = glsr( ReviewManager::class )->single( get_post( $post->ID ));
51
+		if( glsr_get( $post, 'post_type' ) != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] ) )return;
52
+		$review = glsr( ReviewManager::class )->single( get_post( $post->ID ) );
53 53
 		if( $post->post_status == 'publish' ) {
54 54
 			glsr( CountsManager::class )->increase( $review );
55 55
 		}
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 	 */
76 76
 	public function onBeforeDelete( $postId )
77 77
 	{
78
-		if( !$this->isReviewPostId( $postId ))return;
79
-		$review = glsr( ReviewManager::class )->single( get_post( $postId ));
78
+		if( !$this->isReviewPostId( $postId ) )return;
79
+		$review = glsr( ReviewManager::class )->single( get_post( $postId ) );
80 80
 		glsr( CountsManager::class )->decrease( $review );
81 81
 	}
82 82
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 		if( !$this->isReviewPostId( $postId )
94 94
 			|| !in_array( $metaKey, ['assigned_to', 'rating', 'review_type'] )
95 95
 		)return;
96
-		$review = glsr( ReviewManager::class )->single( get_post( $postId ));
96
+		$review = glsr( ReviewManager::class )->single( get_post( $postId ) );
97 97
 		if( $review->$metaKey == $metaValue )return;
98 98
 		$method = glsr( Helper::class )->buildMethodName( $metaKey, 'onBeforeChange' );
99 99
 		call_user_func( [$this, $method], $review, $metaValue );
Please login to merge, or discard this patch.
plugin/Controllers/AdminController.php 1 patch
Spacing   +25 added lines, -25 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
 	/**
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
 	public function routerCountReviews( $showNotice = true )
149 149
 	{
150 150
 		glsr( CountsManager::class )->countAll();
151
-		glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' ));
151
+		glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' ) );
152 152
 		if( $showNotice ) {
153
-			glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ));
153
+			glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ) );
154 154
 		}
155 155
 	}
156 156
 
@@ -185,17 +185,17 @@  discard block
 block discarded – undo
185 185
 	{
186 186
 		$file = $_FILES['import-file'];
187 187
 		if( $file['error'] !== UPLOAD_ERR_OK ) {
188
-			return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ));
188
+			return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ) );
189 189
 		}
190
-		if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] )) {
191
-			return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ));
190
+		if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] ) ) {
191
+			return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ) );
192 192
 		}
193 193
 		$settings = json_decode( file_get_contents( $file['tmp_name'] ), true );
194
-		if( empty( $settings )) {
195
-			return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ));
194
+		if( empty($settings) ) {
195
+			return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ) );
196 196
 		}
197
-		glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ));
198
-		glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ));
197
+		glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ) );
198
+		glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ) );
199 199
 	}
200 200
 
201 201
 	/**
@@ -213,6 +213,6 @@  discard block
 block discarded – undo
213 213
 			UPLOAD_ERR_CANT_WRITE => __( 'Failed to write file to disk.', 'site-reviews' ),
214 214
 			UPLOAD_ERR_EXTENSION => __( 'A PHP extension stopped the file upload.', 'site-reviews' ),
215 215
 		];
216
-		return glsr_get( $errors, $errorCode, __( 'Unknown upload error.', 'site-reviews' ));
216
+		return glsr_get( $errors, $errorCode, __( 'Unknown upload error.', 'site-reviews' ) );
217 217
 	}
218 218
 }
Please login to merge, or discard this patch.