Test Failed
Push — master ( 59b255...755753 )
by Paul
04:04
created
plugin/Modules/Validator/ValidationRules.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,8 +127,8 @@
 block discarded – undo
127 127
 	public function validateRequired( $value )
128 128
 	{
129 129
 		return is_null( $value )
130
-			|| ( is_string( $value ) && trim( $value ) === '' )
131
-			|| ( is_array( $value ) && count( $value ) < 1 )
130
+			|| (is_string( $value ) && trim( $value ) === '')
131
+			|| (is_array( $value ) && count( $value ) < 1)
132 132
 			? false
133 133
 			: true;
134 134
 	}
Please login to merge, or discard this patch.
plugin/Modules/Validator.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 		foreach( $this->rules as $attribute => $rules ) {
74 74
 			foreach( $rules as $rule ) {
75 75
 				$this->validateAttribute( $attribute, $rule );
76
-				if( $this->shouldStopValidating( $attribute ))break;
76
+				if( $this->shouldStopValidating( $attribute ) )break;
77 77
 			}
78 78
 		}
79 79
 		return $this->errors;
@@ -88,13 +88,13 @@  discard block
 block discarded – undo
88 88
 	 */
89 89
 	public function validateAttribute( $attribute, $rule )
90 90
 	{
91
-		list( $rule, $parameters ) = $this->parseRule( $rule );
91
+		list($rule, $parameters) = $this->parseRule( $rule );
92 92
 		if( $rule == '' )return;
93 93
 		$value = $this->getValue( $attribute );
94
-		if( !method_exists( $this, $method = 'validate'.$rule )) {
94
+		if( !method_exists( $this, $method = 'validate'.$rule ) ) {
95 95
 			throw new BadMethodCallException( "Method [$method] does not exist." );
96 96
 		}
97
-		if( !$this->$method( $value, $attribute, $parameters )) {
97
+		if( !$this->$method( $value, $attribute, $parameters ) ) {
98 98
 			$this->addFailure( $attribute, $rule, $parameters );
99 99
 		}
100 100
 	}
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 	 */
144 144
 	protected function getMessage( $attribute, $rule, array $parameters )
145 145
 	{
146
-		if( in_array( $rule, $this->sizeRules )) {
146
+		if( in_array( $rule, $this->sizeRules ) ) {
147 147
 			return $this->getSizeMessage( $attribute, $rule, $parameters );
148 148
 		}
149 149
 		$lowerRule = glsr( Helper::class )->snakeCase( $rule );
@@ -158,11 +158,11 @@  discard block
 block discarded – undo
158 158
 	 */
159 159
 	protected function getRule( $attribute, $rules )
160 160
 	{
161
-		if( !array_key_exists( $attribute, $this->rules ))return;
162
-		$rules = (array) $rules;
161
+		if( !array_key_exists( $attribute, $this->rules ) )return;
162
+		$rules = (array)$rules;
163 163
 		foreach( $this->rules[$attribute] as $rule ) {
164
-			list( $rule, $parameters ) = $this->parseRule( $rule );
165
-			if( in_array( $rule, $rules )) {
164
+			list($rule, $parameters) = $this->parseRule( $rule );
165
+			if( in_array( $rule, $rules ) ) {
166 166
 				return [$rule, $parameters];
167 167
 			}
168 168
 		}
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 		if( is_numeric( $value ) && $hasNumeric ) {
181 181
 			return $value;
182 182
 		}
183
-		elseif( is_array( $value )) {
183
+		elseif( is_array( $value ) ) {
184 184
 			return count( $value );
185 185
 		}
186 186
 		return mb_strlen( $value );
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 	 */
208 208
 	protected function getValue( $attribute )
209 209
 	{
210
-		if( isset( $this->data[$attribute] )) {
210
+		if( isset($this->data[$attribute]) ) {
211 211
 			return $this->data[$attribute];
212 212
 		}
213 213
 	}
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	 */
221 221
 	protected function hasRule( $attribute, $rules )
222 222
 	{
223
-		return !is_null( $this->getRule( $attribute, $rules ));
223
+		return !is_null( $this->getRule( $attribute, $rules ) );
224 224
 	}
225 225
 
226 226
 	/**
@@ -259,11 +259,11 @@  discard block
 block discarded – undo
259 259
 		$parameters = [];
260 260
 		// example: {rule}:{parameters}
261 261
 		if( strpos( $rule, ':' ) !== false ) {
262
-			list( $rule, $parameter ) = explode( ':', $rule, 2 );
262
+			list($rule, $parameter) = explode( ':', $rule, 2 );
263 263
 			// example: {parameter1,parameter2,...}
264 264
 			$parameters = $this->parseParameters( $rule, $parameter );
265 265
 		}
266
-		$rule = ucwords( str_replace( ['-', '_'], ' ', trim( $rule )));
266
+		$rule = ucwords( str_replace( ['-', '_'], ' ', trim( $rule ) ) );
267 267
 		$rule = str_replace( ' ', '', $rule );
268 268
 		return [$rule, $parameters];
269 269
 	}
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
 	protected function shouldStopValidating( $attribute )
291 291
 	{
292 292
 		return $this->hasRule( $attribute, $this->implicitRules )
293
-			&& isset( $this->failedRules[$attribute] )
293
+			&& isset($this->failedRules[$attribute])
294 294
 			&& array_intersect( array_keys( $this->failedRules[$attribute] ), $this->implicitRules );
295 295
 	}
296 296
 
@@ -315,11 +315,11 @@  discard block
 block discarded – undo
315 315
 			'regex' => __( 'The format is invalid.', 'site-reviews' ),
316 316
 			'required' => __( 'This field is required.', 'site-reviews' ),
317 317
 		];
318
-		$message = isset( $strings[$key] )
318
+		$message = isset($strings[$key])
319 319
 			? $strings[$key]
320 320
 			: false;
321 321
 		if( !$message )return;
322
-		if( method_exists( $this, $method = 'replace'.$rule )) {
322
+		if( method_exists( $this, $method = 'replace'.$rule ) ) {
323 323
 			$message = $this->$method( $message, $parameters );
324 324
 		}
325 325
 		return $message;
Please login to merge, or discard this patch.
plugin/Helper.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@  discard block
 block discarded – undo
14 14
 	 */
15 15
 	public function buildClassName( $name, $path = '' )
16 16
 	{
17
-		$className = explode( '_', $this->snakeCase( $name ));
17
+		$className = explode( '_', $this->snakeCase( $name ) );
18 18
 		$className = array_map( 'ucfirst', $className );
19 19
 		$className = implode( '', $className );
20 20
 		$path = ltrim( str_replace( __NAMESPACE__, '', $path ), '\\' );
21
-		return !empty( $path )
21
+		return !empty($path)
22 22
 			? __NAMESPACE__.'\\'.$path.'\\'.$className
23 23
 			: $className;
24 24
 	}
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	 */
31 31
 	public function buildMethodName( $name, $prefix = '' )
32 32
 	{
33
-		return lcfirst( $prefix.$this->buildClassName( $name ));
33
+		return lcfirst( $prefix.$this->buildClassName( $name ) );
34 34
 	}
35 35
 
36 36
 	/**
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 	 */
40 40
 	public function buildPropertyName( $name )
41 41
 	{
42
-		return lcfirst( $this->buildClassName( $name ));
42
+		return lcfirst( $this->buildClassName( $name ) );
43 43
 	}
44 44
 
45 45
 	/**
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 	 */
71 71
 	public function convertPathToId( $path, $prefix = '' )
72 72
 	{
73
-		return str_replace( ['[', ']'], ['-', ''], $this->convertPathToName( $path, $prefix ));
73
+		return str_replace( ['[', ']'], ['-', ''], $this->convertPathToName( $path, $prefix ) );
74 74
 	}
75 75
 
76 76
 	/**
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 	{
82 82
 		$levels = explode( '.', $path );
83 83
 		return array_reduce( $levels, function( $result, $value ) {
84
-			return $result.= '['.$value.']';
84
+			return $result .= '['.$value.']';
85 85
 		}, $prefix );
86 86
 	}
87 87
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 	 */
92 92
 	public function dashCase( $string )
93 93
 	{
94
-		return str_replace( '_', '-', $this->snakeCase( $string ));
94
+		return str_replace( '_', '-', $this->snakeCase( $string ) );
95 95
 	}
96 96
 
97 97
 	/**
@@ -113,11 +113,11 @@  discard block
 block discarded – undo
113 113
 	 */
114 114
 	public function filterInput( $key, array $request = [] )
115 115
 	{
116
-		if( isset( $request[$key] )) {
116
+		if( isset($request[$key]) ) {
117 117
 			return $request[$key];
118 118
 		}
119 119
 		$variable = filter_input( INPUT_POST, $key );
120
-		if( is_null( $variable ) && isset( $_POST[$key] )) {
120
+		if( is_null( $variable ) && isset($_POST[$key]) ) {
121 121
 			$variable = $_POST[$key];
122 122
 		}
123 123
 		return $variable;
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 	public function filterInputArray( $key )
131 131
 	{
132 132
 		$variable = filter_input( INPUT_POST, $key, FILTER_DEFAULT, FILTER_REQUIRE_ARRAY );
133
-		if( empty( $variable ) && !empty( $_POST[$key] ) && is_array( $_POST[$key] )) {
133
+		if( empty($variable) && !empty($_POST[$key]) && is_array( $_POST[$key] ) ) {
134 134
 			$variable = $_POST[$key];
135 135
 		}
136 136
 		return (array)$variable;
@@ -146,13 +146,13 @@  discard block
 block discarded – undo
146 146
 		$result = [];
147 147
 		foreach( $array as $key => $value ) {
148 148
 			$newKey = ltrim( $prefix.'.'.$key, '.' );
149
-			if( $this->isIndexedFlatArray( $value )) {
149
+			if( $this->isIndexedFlatArray( $value ) ) {
150 150
 				if( $flattenValue ) {
151 151
 					$value = '['.implode( ', ', $value ).']';
152 152
 				}
153 153
 			}
154
-			else if( is_array( $value )) {
155
-				$result = array_merge( $result, $this->flattenArray( $value, $flattenValue, $newKey ));
154
+			else if( is_array( $value ) ) {
155
+				$result = array_merge( $result, $this->flattenArray( $value, $flattenValue, $newKey ) );
156 156
 				continue;
157 157
 			}
158 158
 			$result[$newKey] = $value;
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 				Whip::IPV4 => $cloudflareIps['v4'],
172 172
 				Whip::IPV6 => $cloudflareIps['v6'],
173 173
 			],
174
-		]))->getValidIpAddress();
174
+		] ))->getValidIpAddress();
175 175
 	}
176 176
 
177 177
 	/**
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 	{
185 185
 		$keys = explode( '.', $path );
186 186
 		foreach( $keys as $key ) {
187
-			if( !isset( $values[$key] )) {
187
+			if( !isset($values[$key]) ) {
188 188
 				return $fallback;
189 189
 			}
190 190
 			$values = $values[$key];
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 	 */
199 199
 	public function isIndexedArray( $array )
200 200
 	{
201
-		if( !is_array( $array )) {
201
+		if( !is_array( $array ) ) {
202 202
 			return false;
203 203
 		}
204 204
 		$current = 0;
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 	 */
218 218
 	public function isIndexedFlatArray( $array )
219 219
 	{
220
-		if( !is_array( $array ) || array_filter( $array, 'is_array' )) {
220
+		if( !is_array( $array ) || array_filter( $array, 'is_array' ) ) {
221 221
 			return false;
222 222
 		}
223 223
 		return $this->isIndexedArray( $array );
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 	 */
231 231
 	public function prefixString( $string, $prefix = '' )
232 232
 	{
233
-		return $prefix.str_replace( $prefix, '', trim( $string ));
233
+		return $prefix.str_replace( $prefix, '', trim( $string ) );
234 234
 	}
235 235
 
236 236
 	/**
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
 	 */
277 277
 	public function snakeCase( $string )
278 278
 	{
279
-		if( !ctype_lower( $string )) {
279
+		if( !ctype_lower( $string ) ) {
280 280
 			$string = preg_replace( '/\s+/u', '', $string );
281 281
 			$string = preg_replace( '/(.)(?=[A-Z])/u', '$1_', $string );
282 282
 			$string = mb_strtolower( $string, 'UTF-8' );
@@ -291,6 +291,6 @@  discard block
 block discarded – undo
291 291
 	 */
292 292
 	public function startsWith( $needle, $haystack )
293 293
 	{
294
-		return substr( $haystack, 0, strlen( $needle )) === $needle;
294
+		return substr( $haystack, 0, strlen( $needle ) ) === $needle;
295 295
 	}
296 296
 }
Please login to merge, or discard this patch.
plugin/Modules/Schema.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@  discard block
 block discarded – undo
36 36
 			if( $review->review_type != 'local' )continue;
37 37
 			$reviews[] = $this->buildReview( $review );
38 38
 		}
39
-		if( !empty( $reviews )) {
39
+		if( !empty($reviews) ) {
40 40
 			array_walk( $reviews, function( &$review ) {
41
-				unset( $review['@context'] );
42
-				unset( $review['itemReviewed'] );
41
+				unset($review['@context']);
42
+				unset($review['itemReviewed']);
43 43
 			});
44 44
 			$schema['review'] = $reviews;
45 45
 		}
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	 */
53 53
 	public function buildSummary( $args = null )
54 54
 	{
55
-		if( is_array( $args )) {
55
+		if( is_array( $args ) ) {
56 56
 			$this->args = $args;
57 57
 		}
58 58
 		$buildSummary = glsr( Helper::class )->buildMethodName( $this->getSchemaOptionValue( 'type' ), 'buildSummaryFor' );
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 		$schema = method_exists( $this, $buildSummary )
61 61
 			? $this->$buildSummary()
62 62
 			: $this->buildSummaryForCustom();
63
-		if( !empty( $count )) {
63
+		if( !empty($count) ) {
64 64
 			$schema->aggregateRating(
65 65
 				$this->getSchemaType( 'AggregateRating' )
66 66
 					->ratingValue( $this->getRatingValue() )
@@ -79,11 +79,11 @@  discard block
 block discarded – undo
79 79
 	 */
80 80
 	public function render()
81 81
 	{
82
-		if( is_null( glsr()->schemas ))return;
82
+		if( is_null( glsr()->schemas ) )return;
83 83
 		printf( '<script type="application/ld+json">%s</script>', json_encode(
84 84
 			apply_filters( 'site-reviews/schema/all', glsr()->schemas ),
85 85
 			JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES
86
-		));
86
+		) );
87 87
 	}
88 88
 
89 89
 	/**
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	{
94 94
 		$schemas = glsr()->schemas;
95 95
 		$schemas[] = $schema;
96
-		glsr()->schemas = array_map( 'unserialize', array_unique( array_map( 'serialize', $schemas )));
96
+		glsr()->schemas = array_map( 'unserialize', array_unique( array_map( 'serialize', $schemas ) ) );
97 97
 	}
98 98
 
99 99
 	/**
@@ -103,16 +103,16 @@  discard block
 block discarded – undo
103 103
 	protected function buildReview( $review )
104 104
 	{
105 105
 		$schema = $this->getSchemaType( 'Review' )
106
-			->doIf( !in_array( 'title', $this->args['hide'] ), function( $schema ) use( $review ) {
106
+			->doIf( !in_array( 'title', $this->args['hide'] ), function( $schema ) use($review) {
107 107
 				$schema->name( $review->title );
108 108
 			})
109
-			->doIf( !in_array( 'excerpt', $this->args['hide'] ), function( $schema ) use( $review ) {
109
+			->doIf( !in_array( 'excerpt', $this->args['hide'] ), function( $schema ) use($review) {
110 110
 				$schema->reviewBody( $review->content );
111 111
 			})
112
-			->datePublished(( new DateTime( $review->date )))
113
-			->author( $this->getSchemaType( 'Person' )->name( $review->author ))
114
-			->itemReviewed( $this->getSchemaType()->name( $this->getSchemaOptionValue( 'name' )));
115
-		if( !empty( $review->rating )) {
112
+			->datePublished( (new DateTime( $review->date )) )
113
+			->author( $this->getSchemaType( 'Person' )->name( $review->author ) )
114
+			->itemReviewed( $this->getSchemaType()->name( $this->getSchemaOptionValue( 'name' ) ) );
115
+		if( !empty($review->rating) ) {
116 116
 			$schema->reviewRating(
117 117
 				$this->getSchemaType( 'Rating' )
118 118
 					->ratingValue( $review->rating )
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 	{
132 132
 		foreach( $values as $value ) {
133 133
 			$option = $this->getSchemaOptionValue( $value );
134
-			if( empty( $option ))continue;
134
+			if( empty($option) )continue;
135 135
 			$schema->$value( $option );
136 136
 		}
137 137
 		return $schema;
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 	{
145 145
 		return $this->buildSchemaValues( $this->getSchemaType(), [
146 146
 			'description', 'image', 'name', 'url',
147
-		]);
147
+		] );
148 148
 	}
149 149
 
150 150
 	/**
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 	{
155 155
 		return $this->buildSchemaValues( $this->buildSummaryForCustom(), [
156 156
 			'address', 'priceRange', 'telephone',
157
-		]);
157
+		] );
158 158
 	}
159 159
 
160 160
 	/**
@@ -164,10 +164,10 @@  discard block
 block discarded – undo
164 164
 	{
165 165
 		$offers = $this->buildSchemaValues( $this->getSchemaType( 'AggregateOffer' ), [
166 166
 			'highPrice', 'lowPrice', 'priceCurrency',
167
-		]);
167
+		] );
168 168
 		return $this->buildSummaryForCustom()
169 169
 			->offers( $offers )
170
-			->setProperty( '@id', $this->getSchemaOptionValue( 'url' ));
170
+			->setProperty( '@id', $this->getSchemaOptionValue( 'url' ) );
171 171
 	}
172 172
 
173 173
 	/**
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 	 */
192 192
 	protected function getReviews( $force = false )
193 193
 	{
194
-		if( !isset( $this->reviews ) || $force ) {
194
+		if( !isset($this->reviews) || $force ) {
195 195
 			$args = wp_parse_args( ['count' => -1], $this->args );
196 196
 			$this->reviews = glsr( Database::class )->getReviews( $args )->results;
197 197
 		}
@@ -206,14 +206,14 @@  discard block
 block discarded – undo
206 206
 	protected function getSchemaOption( $option, $fallback )
207 207
 	{
208 208
 		$option = strtolower( $option );
209
-		if( $schemaOption = trim( (string)get_post_meta( intval( get_the_ID() ), 'schema_'.$option, true ))) {
209
+		if( $schemaOption = trim( (string)get_post_meta( intval( get_the_ID() ), 'schema_'.$option, true ) ) ) {
210 210
 			return $schemaOption;
211 211
 		}
212 212
 		$setting = glsr( OptionManager::class )->get( 'settings.schema.'.$option );
213
-		if( is_array( $setting )) {
213
+		if( is_array( $setting ) ) {
214 214
 			return $this->getSchemaOptionDefault( $setting, $fallback );
215 215
 		}
216
-		return !empty( $setting )
216
+		return !empty($setting)
217 217
 			? $setting
218 218
 			: $fallback;
219 219
 	}
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 		$setting = wp_parse_args( $setting, [
228 228
 			'custom' => '',
229 229
 			'default' => $fallback,
230
-		]);
230
+		] );
231 231
 		return $setting['default'] != 'custom'
232 232
 			? $setting['default']
233 233
 			: $setting['custom'];
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 		}
247 247
 		if( !is_single() && !is_page() )return;
248 248
 		$method = glsr( Helper::class )->buildMethodName( $option, 'getThing' );
249
-		if( method_exists( $this, $method )) {
249
+		if( method_exists( $this, $method ) ) {
250 250
 			return $this->$method();
251 251
 		}
252 252
 	}
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
 	 */
258 258
 	protected function getSchemaType( $type = null )
259 259
 	{
260
-		if( !is_string( $type )) {
260
+		if( !is_string( $type ) ) {
261 261
 			$type = $this->getSchemaOption( 'type', 'LocalBusiness' );
262 262
 		}
263 263
 		$className = glsr( Helper::class )->buildClassName( $type, 'Modules\Schema' );
@@ -272,11 +272,11 @@  discard block
 block discarded – undo
272 272
 	protected function getThingDescription()
273 273
 	{
274 274
 		$post = get_post();
275
-		if( !( $post instanceof WP_Post )) {
275
+		if( !($post instanceof WP_Post) ) {
276 276
 			return '';
277 277
 		}
278
-		$text = strip_shortcodes( wp_strip_all_tags( $post->post_excerpt ));
279
-		return wp_trim_words( $text, apply_filters( 'excerpt_length', 55 ));
278
+		$text = strip_shortcodes( wp_strip_all_tags( $post->post_excerpt ) );
279
+		return wp_trim_words( $text, apply_filters( 'excerpt_length', 55 ) );
280 280
 	}
281 281
 
282 282
 	/**
Please login to merge, or discard this patch.
plugin/Shortcodes/SiteReviewsFormButton.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@  discard block
 block discarded – undo
15 15
 		return [[
16 16
 			'type' => 'container',
17 17
 			'html' => '<p class="strong">'.esc_html__( 'All settings are optional.', 'site-reviews' ).'</p>',
18
-		],[
18
+		], [
19 19
 			'label' => esc_html__( 'Title', 'site-reviews' ),
20 20
 			'name' => 'title',
21 21
 			'tooltip' => esc_attr__( 'Enter a custom shortcode heading.', 'site-reviews' ),
22 22
 			'type' => 'textbox',
23
-		],[
23
+		], [
24 24
 			'label' => esc_html__( 'Description', 'site-reviews' ),
25 25
 			'minHeight' => 60,
26 26
 			'minWidth' => 240,
@@ -35,29 +35,29 @@  discard block
 block discarded – undo
35 35
 			'name' => 'assign_to',
36 36
 			'tooltip' => esc_attr__( 'Assign submitted reviews to a custom page/post ID. You can also enter "post_id" to assign reviews to the ID of the current page.', 'site-reviews' ),
37 37
 			'type' => 'textbox',
38
-		],[
38
+		], [
39 39
 			'label' => esc_html__( 'Classes', 'site-reviews' ),
40 40
 			'name' => 'class',
41 41
 			'tooltip' => esc_attr__( 'Add custom CSS classes to the shortcode.', 'site-reviews' ),
42 42
 			'type' => 'textbox',
43
-		],[
43
+		], [
44 44
 			'columns' => 2,
45 45
 			'items' => [[
46 46
 				'name' => 'hide_email',
47 47
 				'text' => esc_html__( 'Email', 'site-reviews' ),
48 48
 				'tooltip' => esc_attr__( 'Hide the email field?', 'site-reviews' ),
49 49
 				'type' => 'checkbox',
50
-			],[
50
+			], [
51 51
 				'name' => 'hide_name',
52 52
 				'text' => esc_html__( 'Name', 'site-reviews' ),
53 53
 				'tooltip' => esc_attr__( 'Hide the name field?', 'site-reviews' ),
54 54
 				'type' => 'checkbox',
55
-			],[
55
+			], [
56 56
 				'name' => 'hide_terms',
57 57
 				'text' => esc_html__( 'Terms', 'site-reviews' ),
58 58
 				'tooltip' => esc_attr__( 'Hide the terms field?', 'site-reviews' ),
59 59
 				'type' => 'checkbox',
60
-			],[
60
+			], [
61 61
 				'name' => 'hide_title',
62 62
 				'text' => esc_html__( 'Title', 'site-reviews' ),
63 63
 				'tooltip' => esc_attr__( 'Hide the title field?', 'site-reviews' ),
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 			'layout' => 'grid',
68 68
 			'spacing' => 5,
69 69
 			'type' => 'container',
70
-		],[
70
+		], [
71 71
 			'hidden' => true,
72 72
 			'name' => 'id',
73 73
 			'type' => 'textbox',
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 	public function getTerms()
81 81
 	{
82 82
 		$terms = glsr( Database::class )->getTerms();
83
-		if( empty( $terms )) {
83
+		if( empty($terms) ) {
84 84
 			return [];
85 85
 		}
86 86
 		return [
Please login to merge, or discard this patch.
plugin/Shortcodes/SiteReviewsSummaryButton.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@  discard block
 block discarded – undo
12 12
 	public function fields()
13 13
 	{
14 14
 		return [[
15
-			'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' )),
15
+			'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' ) ),
16 16
 			'minWidth' => 320,
17 17
 			'type' => 'container',
18
-		],[
18
+		], [
19 19
 			'label' => esc_html__( 'Title', 'site-reviews' ),
20 20
 			'name' => 'title',
21 21
 			'tooltip' => esc_attr__( 'Enter a custom shortcode heading.', 'site-reviews' ),
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 			'name' => 'assigned_to',
29 29
 			'tooltip' => esc_attr__( 'Limit reviews to those assigned to this post ID (separate multiple IDs with a comma). You can also enter "post_id" to use the ID of the current page.', 'site-reviews' ),
30 30
 			'type' => 'textbox',
31
-		],[
31
+		], [
32 32
 			'label' => esc_html__( 'Schema', 'site-reviews' ),
33 33
 			'name' => 'schema',
34 34
 			'options' => [
@@ -37,34 +37,34 @@  discard block
 block discarded – undo
37 37
 			],
38 38
 			'tooltip' => esc_attr__( 'Rich snippets are disabled by default.', 'site-reviews' ),
39 39
 			'type' => 'listbox',
40
-		],[
40
+		], [
41 41
 			'label' => esc_html__( 'Classes', 'site-reviews' ),
42 42
 			'name' => 'class',
43 43
 			'tooltip' => esc_attr__( 'Add custom CSS classes to the shortcode.', 'site-reviews' ),
44 44
 			'type' => 'textbox',
45
-		],[
45
+		], [
46 46
 			'columns' => 2,
47 47
 			'items' => [[
48 48
 				'type' => 'checkbox',
49 49
 				'name' => 'hide_bars',
50 50
 				'text' => esc_html__( 'Bars', 'site-reviews' ),
51 51
 				'tooltip' => esc_attr__( 'Hide the percentage bars?', 'site-reviews' ),
52
-			],[
52
+			], [
53 53
 				'type' => 'checkbox',
54 54
 				'name' => 'hide_if_empty',
55 55
 				'text' => esc_html__( 'If Empty', 'site-reviews' ),
56 56
 				'tooltip' => esc_attr__( 'Hide the summary if no reviews are found?', 'site-reviews' ),
57
-			],[
57
+			], [
58 58
 				'type' => 'checkbox',
59 59
 				'name' => 'hide_rating',
60 60
 				'text' => esc_html__( 'Rating', 'site-reviews' ),
61 61
 				'tooltip' => esc_attr__( 'Hide the rating?', 'site-reviews' ),
62
-			],[
62
+			], [
63 63
 				'type' => 'checkbox',
64 64
 				'name' => 'hide_stars',
65 65
 				'text' => esc_html__( 'Stars', 'site-reviews' ),
66 66
 				'tooltip' => esc_attr__( 'Hide the stars?', 'site-reviews' ),
67
-			],[
67
+			], [
68 68
 				'type' => 'checkbox',
69 69
 				'name' => 'hide_summary',
70 70
 				'text' => esc_html__( 'Summary', 'site-reviews' ),
Please login to merge, or discard this patch.
plugin/Shortcodes/SiteReviewsButton.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -13,15 +13,15 @@  discard block
 block discarded – undo
13 13
 	public function fields()
14 14
 	{
15 15
 		return [[
16
-			'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' )),
16
+			'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' ) ),
17 17
 			'minWidth' => 320,
18 18
 			'type' => 'container',
19
-		],[
19
+		], [
20 20
 			'label' => esc_html__( 'Title', 'site-reviews' ),
21 21
 			'name' => 'title',
22 22
 			'tooltip' => esc_attr__( 'Enter a custom shortcode heading.', 'site-reviews' ),
23 23
 			'type' => 'textbox',
24
-		],[
24
+		], [
25 25
 			'label' => esc_html__( 'Count', 'site-reviews' ),
26 26
 			'maxLength' => 5,
27 27
 			'name' => 'count',
@@ -29,19 +29,19 @@  discard block
 block discarded – undo
29 29
 			'text' => '10',
30 30
 			'tooltip' => esc_attr__( 'How many reviews would you like to display (default: 10)?', 'site-reviews' ),
31 31
 			'type' => 'textbox',
32
-		],[
32
+		], [
33 33
 			'label' => esc_html__( 'Rating', 'site-reviews' ),
34 34
 			'name' => 'rating',
35 35
 			'options' => [
36
-				'5' => esc_html( sprintf( _n( '%s star', '%s stars', 5, 'site-reviews' ), 5 )),
37
-				'4' => esc_html( sprintf( _n( '%s star', '%s stars', 4, 'site-reviews' ), 4 )),
38
-				'3' => esc_html( sprintf( _n( '%s star', '%s stars', 3, 'site-reviews' ), 3 )),
39
-				'2' => esc_html( sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 )),
40
-				'1' => esc_html( sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 )),
36
+				'5' => esc_html( sprintf( _n( '%s star', '%s stars', 5, 'site-reviews' ), 5 ) ),
37
+				'4' => esc_html( sprintf( _n( '%s star', '%s stars', 4, 'site-reviews' ), 4 ) ),
38
+				'3' => esc_html( sprintf( _n( '%s star', '%s stars', 3, 'site-reviews' ), 3 ) ),
39
+				'2' => esc_html( sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 ) ),
40
+				'1' => esc_html( sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 ) ),
41 41
 			],
42 42
 			'tooltip' => esc_attr__( 'What is the minimum rating to display (default: 1 star)?', 'site-reviews' ),
43 43
 			'type' => 'listbox',
44
-		],[
44
+		], [
45 45
 			'label' => esc_html__( 'Pagination', 'site-reviews' ),
46 46
 			'name' => 'pagination',
47 47
 			'options' => [
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 			'name' => 'assigned_to',
60 60
 			'tooltip' => esc_attr__( 'Limit reviews to those assigned to this post ID (separate multiple IDs with a comma). You can also enter "post_id" to use the ID of the current page.', 'site-reviews' ),
61 61
 			'type' => 'textbox',
62
-		],[
62
+		], [
63 63
 			'label' => esc_html__( 'Schema', 'site-reviews' ),
64 64
 			'name' => 'schema',
65 65
 			'options' => [
@@ -68,49 +68,49 @@  discard block
 block discarded – undo
68 68
 			],
69 69
 			'tooltip' => esc_attr__( 'Rich snippets are disabled by default.', 'site-reviews' ),
70 70
 			'type' => 'listbox',
71
-		],[
71
+		], [
72 72
 			'label' => esc_html__( 'Classes', 'site-reviews' ),
73 73
 			'name' => 'class',
74 74
 			'tooltip' => esc_attr__( 'Add custom CSS classes to the shortcode.', 'site-reviews' ),
75 75
 			'type' => 'textbox',
76
-		],[
76
+		], [
77 77
 			'columns' => 2,
78 78
 			'items' => [[
79 79
 				'name' => 'hide_assigned_to',
80 80
 				'text' => esc_html__( 'Assigned To', 'site-reviews' ),
81 81
 				'tooltip' => esc_attr__( 'Hide the assigned to link?', 'site-reviews' ),
82 82
 				'type' => 'checkbox',
83
-			],[
83
+			], [
84 84
 				'name' => 'hide_author',
85 85
 				'text' => esc_html__( 'Author', 'site-reviews' ),
86 86
 				'tooltip' => esc_attr__( 'Hide the review author?', 'site-reviews' ),
87 87
 				'type' => 'checkbox',
88
-			],[
88
+			], [
89 89
 				'name' => 'hide_avatar',
90 90
 				'text' => esc_html__( 'Avatar', 'site-reviews' ),
91 91
 				'tooltip' => esc_attr__( 'Hide the reviewer avatar if shown?', 'site-reviews' ),
92 92
 				'type' => 'checkbox',
93
-			],[
93
+			], [
94 94
 				'name' => 'hide_content',
95 95
 				'text' => esc_html__( 'Content', 'site-reviews' ),
96 96
 				'tooltip' => esc_attr__( 'Hide the review content?', 'site-reviews' ),
97 97
 				'type' => 'checkbox',
98
-			],[
98
+			], [
99 99
 				'name' => 'hide_date',
100 100
 				'text' => esc_html__( 'Date', 'site-reviews' ),
101 101
 				'tooltip' => esc_attr__( 'Hide the review date?', 'site-reviews' ),
102 102
 				'type' => 'checkbox',
103
-			],[
103
+			], [
104 104
 				'name' => 'hide_rating',
105 105
 				'text' => esc_html__( 'Rating', 'site-reviews' ),
106 106
 				'tooltip' => esc_attr__( 'Hide the review rating?', 'site-reviews' ),
107 107
 				'type' => 'checkbox',
108
-			],[
108
+			], [
109 109
 				'name' => 'hide_response',
110 110
 				'text' => esc_html__( 'Response', 'site-reviews' ),
111 111
 				'tooltip' => esc_attr__( 'Hide the review response?', 'site-reviews' ),
112 112
 				'type' => 'checkbox',
113
-			],[
113
+			], [
114 114
 				'name' => 'hide_title',
115 115
 				'text' => esc_html__( 'Title', 'site-reviews' ),
116 116
 				'tooltip' => esc_attr__( 'Hide the review title?', 'site-reviews' ),
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 			'label' => esc_html__( 'Hide', 'site-reviews' ),
121 121
 			'spacing' => 5,
122 122
 			'type' => 'container',
123
-		],[
123
+		], [
124 124
 			'hidden' => true,
125 125
 			'name' => 'id',
126 126
 			'type' => 'textbox',
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 	public function getTerms()
134 134
 	{
135 135
 		$terms = glsr( Database::class )->getTerms();
136
-		if( empty( $terms )) {
136
+		if( empty($terms) ) {
137 137
 			return [];
138 138
 		}
139 139
 		return [
Please login to merge, or discard this patch.
plugin/Controllers/AdminController.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 	 */
24 24
 	public function enqueueAssets()
25 25
 	{
26
-		$command = new EnqueueAdminAssets([
26
+		$command = new EnqueueAdminAssets( [
27 27
 			'pointers' => [[
28 28
 				'content' => __( 'You can pin exceptional reviews so that they are always shown first.', 'site-reviews' ),
29 29
 				'id' => 'glsr-pointer-pinned',
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 				'target' => '#misc-pub-pinned',
36 36
 				'title' => __( 'Pin Your Reviews', 'site-reviews' ),
37 37
 			]],
38
-		]);
38
+		] );
39 39
 		$this->execute( $command );
40 40
 	}
41 41
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 	{
48 48
 		$links['settings'] = glsr( Builder::class )->a( __( 'Settings', 'site-reviews' ), [
49 49
 			'href' => admin_url( 'edit.php?post_type='.Application::POST_TYPE.'&page=settings' ),
50
-		]);
50
+		] );
51 51
 		return $links;
52 52
 	}
53 53
 
@@ -58,19 +58,19 @@  discard block
 block discarded – undo
58 58
 	public function filterDashboardGlanceItems( array $items )
59 59
 	{
60 60
 		$postCount = wp_count_posts( Application::POST_TYPE );
61
-		if( empty( $postCount->publish )) {
61
+		if( empty($postCount->publish) ) {
62 62
 			return $items;
63 63
 		}
64 64
 		$text = _n( '%s Review', '%s Reviews', $postCount->publish, 'site-reviews' );
65
-		$text = sprintf( $text, number_format_i18n( $postCount->publish ));
65
+		$text = sprintf( $text, number_format_i18n( $postCount->publish ) );
66 66
 		$items[] = current_user_can( get_post_type_object( Application::POST_TYPE )->cap->edit_posts )
67 67
 			? glsr( Builder::class )->a( $text, [
68 68
 				'class' => 'glsr-review-count',
69 69
 				'href' => 'edit.php?post_type='.Application::POST_TYPE,
70
-			])
70
+			] )
71 71
 			: glsr( Builder::class )->span( $text, [
72 72
 				'class' => 'glsr-review-count',
73
-			]);
73
+			] );
74 74
 		return $items;
75 75
 	}
76 76
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 	public function filterTinymcePlugins( array $plugins )
82 82
 	{
83 83
 		if( user_can_richedit()
84
-			&& ( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ))) {
84
+			&& (current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' )) ) {
85 85
 			$plugins['glsr_shortcode'] = glsr()->url( 'assets/scripts/mce-plugin.js' );
86 86
 		}
87 87
 		return $plugins;
@@ -93,11 +93,11 @@  discard block
 block discarded – undo
93 93
 	 */
94 94
 	public function registerShortcodeButtons()
95 95
 	{
96
-		$command = new RegisterShortcodeButtons([
96
+		$command = new RegisterShortcodeButtons( [
97 97
 			'site_reviews' => esc_html__( 'Recent Reviews', 'site-reviews' ),
98 98
 			'site_reviews_form' => esc_html__( 'Submit a Review', 'site-reviews' ),
99 99
 			'site_reviews_summary' => esc_html__( 'Summary of Reviews', 'site-reviews' ),
100
-		]);
100
+		] );
101 101
 		$this->execute( $command );
102 102
 	}
103 103
 
@@ -107,10 +107,10 @@  discard block
 block discarded – undo
107 107
 	 */
108 108
 	public function renderReviewEditor( WP_Post $post )
109 109
 	{
110
-		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return;
110
+		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return;
111 111
 		glsr()->render( 'partials/editor/review', [
112 112
 			'post' => $post,
113
-		]);
113
+		] );
114 114
 	}
115 115
 
116 116
 	/**
@@ -119,13 +119,13 @@  discard block
 block discarded – undo
119 119
 	 */
120 120
 	public function renderReviewNotice( WP_Post $post )
121 121
 	{
122
-		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return;
123
-		glsr( Notice::class )->addWarning( __( 'This review is read-only.', 'site-reviews' ));
122
+		if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return;
123
+		glsr( Notice::class )->addWarning( __( 'This review is read-only.', 'site-reviews' ) );
124 124
 		glsr( Html::class )->renderTemplate( 'partials/editor/notice', [
125 125
 			'context' => [
126 126
 				'notices' => glsr( Notice::class )->get(),
127 127
 			],
128
-		]);
128
+		] );
129 129
 	}
130 130
 
131 131
 	/**
@@ -137,13 +137,13 @@  discard block
 block discarded – undo
137 137
 		if( glsr_current_screen()->base != 'post' )return;
138 138
 		$shortcodes = [];
139 139
 		foreach( glsr()->mceShortcodes as $shortcode => $values ) {
140
-			if( !apply_filters( sanitize_title( $shortcode ).'_condition', true ))continue;
140
+			if( !apply_filters( sanitize_title( $shortcode ).'_condition', true ) )continue;
141 141
 			$shortcodes[$shortcode] = $values;
142 142
 		}
143
-		if( empty( $shortcodes ))return;
143
+		if( empty($shortcodes) )return;
144 144
 		glsr()->render( 'partials/editor/tinymce', [
145 145
 			'shortcodes' => $shortcodes,
146
-		]);
146
+		] );
147 147
 	}
148 148
 
149 149
 	/**
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 	public function routerClearConsole()
153 153
 	{
154 154
 		glsr( Console::class )->clear();
155
-		glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ));
155
+		glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ) );
156 156
 	}
157 157
 
158 158
 	/**
@@ -186,17 +186,17 @@  discard block
 block discarded – undo
186 186
 	{
187 187
 		$file = $_FILES['import-file'];
188 188
 		if( $file['error'] !== UPLOAD_ERR_OK ) {
189
-			return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ));
189
+			return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ) );
190 190
 		}
191
-		if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] )) {
192
-			return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ));
191
+		if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] ) ) {
192
+			return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ) );
193 193
 		}
194 194
 		$settings = json_decode( file_get_contents( $file['tmp_name'] ), true );
195
-		if( empty( $settings )) {
196
-			return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ));
195
+		if( empty($settings) ) {
196
+			return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ) );
197 197
 		}
198
-		glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ));
199
-		glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ));
198
+		glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ) );
199
+		glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ) );
200 200
 	}
201 201
 
202 202
 	/**
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 			UPLOAD_ERR_CANT_WRITE => __( 'Failed to write file to disk.', 'site-reviews' ),
215 215
 			UPLOAD_ERR_EXTENSION => __( 'A PHP extension stopped the file upload.', 'site-reviews' ),
216 216
 		];
217
-		return !isset( $errors[$errorCode] )
217
+		return !isset($errors[$errorCode])
218 218
 			? __( 'Unknown upload error.', 'site-reviews' )
219 219
 			: $errors[$errorCode];
220 220
 	}
Please login to merge, or discard this patch.
plugin/Modules/Translator.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	{
31 31
 		$translations = $this->getTranslations();
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
 			try {
48 48
 				$potFile = glsr()->path( glsr()->languages.'/'.Application::ID.'.pot' );
49 49
 				$entries = $this->normalize( Parser::parseFile( $potFile )->getEntries() );
@@ -76,13 +76,13 @@  discard block
 block discarded – undo
76 76
 	 */
77 77
 	public function filter( $filterWith = null, $entries = null, $intersect = true )
78 78
 	{
79
-		if( !is_array( $entries )) {
79
+		if( !is_array( $entries ) ) {
80 80
 			$entries = $this->results;
81 81
 		}
82
-		if( !is_array( $filterWith )) {
82
+		if( !is_array( $filterWith ) ) {
83 83
 			$filterWith = $this->getTranslations();
84 84
 		}
85
-		$keys = array_flip( array_column( $filterWith, 'id' ));
85
+		$keys = array_flip( array_column( $filterWith, 'id' ) );
86 86
 		$this->results = $intersect
87 87
 			? array_intersect_key( $entries, $keys )
88 88
 			: array_diff_key( $entries, $keys );
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 	{
100 100
 		return $this->translate( $translation, $domain, [
101 101
 			'single' => $text,
102
-		]);
102
+		] );
103 103
 	}
104 104
 
105 105
 	/**
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 		return $this->translate( $translation, $domain, [
115 115
 			'context' => $context,
116 116
 			'single' => $text,
117
-		]);
117
+		] );
118 118
 	}
119 119
 
120 120
 	/**
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 			'number' => $number,
132 132
 			'plural' => $plural,
133 133
 			'single' => $single,
134
-		]);
134
+		] );
135 135
 	}
136 136
 
137 137
 	/**
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 			'number' => $number,
151 151
 			'plural' => $plural,
152 152
 			'single' => $single,
153
-		]);
153
+		] );
154 154
 	}
155 155
 
156 156
 	/**
@@ -160,13 +160,13 @@  discard block
 block discarded – undo
160 160
 	public function render( $template, array $entry )
161 161
 	{
162 162
 		$data = array_combine(
163
-			array_map( function( $key ) { return 'data.'.$key; }, array_keys( $entry )),
163
+			array_map( function( $key ) { return 'data.'.$key; }, array_keys( $entry ) ),
164 164
 			$entry
165 165
 		);
166 166
 		ob_start();
167 167
 		glsr( Html::class )->renderTemplate( 'partials/translations/'.$template, [
168 168
 			'context' => $data,
169
-		]);
169
+		] );
170 170
 		return ob_get_clean();
171 171
 	}
172 172
 
@@ -199,13 +199,13 @@  discard block
 block discarded – undo
199 199
 				'p1' => $this->getEntryString( $entry, 'msgid_plural' ),
200 200
 				's1' => $this->getEntryString( $entry, 'msgid' ),
201 201
 			];
202
-			$text = !empty( $data['p1'] )
202
+			$text = !empty($data['p1'])
203 203
 				? sprintf( '%s | %s', $data['s1'], $data['p1'] )
204 204
 				: $data['s1'];
205 205
 			$rendered .= $this->render( 'result', [
206 206
 				'entry' => wp_json_encode( $data ),
207 207
 				'text' => wp_strip_all_tags( $text ),
208
-			]);
208
+			] );
209 209
 		}
210 210
 		if( $resetAfterRender ) {
211 211
 			$this->reset();
@@ -238,12 +238,12 @@  discard block
 block discarded – undo
238 238
 	public function search( $needle = '' )
239 239
 	{
240 240
 		$this->reset();
241
-		$needle = trim( strtolower( $needle ));
241
+		$needle = trim( strtolower( $needle ) );
242 242
 		foreach( $this->entries() as $key => $entry ) {
243
-			$single = strtolower( $this->getEntryString( $entry, 'msgid' ));
244
-			$plural = strtolower( $this->getEntryString( $entry, 'msgid_plural' ));
243
+			$single = strtolower( $this->getEntryString( $entry, 'msgid' ) );
244
+			$plural = strtolower( $this->getEntryString( $entry, 'msgid_plural' ) );
245 245
 			if( strlen( $needle ) < static::SEARCH_THRESHOLD ) {
246
-				if( in_array( $needle, [$single, $plural] )) {
246
+				if( in_array( $needle, [$single, $plural] ) ) {
247 247
 					$this->results[$key] = $entry;
248 248
 				}
249 249
 			}
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
 		}
267 267
 		$args = $this->normalizeTranslationArgs( $args );
268 268
 		$strings = $this->getTranslationStrings( $args['single'], $args['plural'] );
269
-		if( empty( $strings )) {
269
+		if( empty($strings) ) {
270 270
 			return $original;
271 271
 		}
272 272
 		$string = current( $strings );
@@ -281,8 +281,8 @@  discard block
 block discarded – undo
281 281
 	 */
282 282
 	protected function getEntryString( array $entry, $key )
283 283
 	{
284
-		return isset( $entry[$key] )
285
-			? implode( '', (array) $entry[$key] )
284
+		return isset($entry[$key])
285
+			? implode( '', (array)$entry[$key] )
286 286
 			: '';
287 287
 	}
288 288
 
@@ -293,10 +293,10 @@  discard block
 block discarded – undo
293 293
 	protected function getTranslations()
294 294
 	{
295 295
 		static $translations;
296
-		if( empty( $translations )) {
296
+		if( empty($translations) ) {
297 297
 			$settings = glsr( OptionManager::class )->get( 'settings' );
298
-			$translations = isset( $settings['strings'] )
299
-				? $this->normalizeSettings( (array) $settings['strings'] )
298
+			$translations = isset($settings['strings'])
299
+				? $this->normalizeSettings( (array)$settings['strings'] )
300 300
 				: [];
301 301
 		}
302 302
 		return $translations;
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 	 */
310 310
 	protected function getTranslationStrings( $single, $plural )
311 311
 	{
312
-		return array_filter( $this->getTranslations(), function( $string ) use( $single, $plural ) {
312
+		return array_filter( $this->getTranslations(), function( $string ) use($single, $plural) {
313 313
 			return $string['s1'] == html_entity_decode( $single, ENT_COMPAT, 'UTF-8' )
314 314
 				&& $string['p1'] == html_entity_decode( $plural, ENT_COMPAT, 'UTF-8' );
315 315
 		});
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
 		$keys = [
324 324
 			'msgctxt', 'msgid', 'msgid_plural', 'msgstr', 'msgstr[0]', 'msgstr[1]',
325 325
 		];
326
-		array_walk( $entries, function( &$entry ) use( $keys ) {
326
+		array_walk( $entries, function( &$entry ) use($keys) {
327 327
 			foreach( $keys as $key ) {
328 328
 				$entry = $this->normalizeEntryString( $entry, $key );
329 329
 			}
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
 	 */
338 338
 	protected function normalizeEntryString( array $entry, $key )
339 339
 	{
340
-		if( isset( $entry[$key] )) {
340
+		if( isset($entry[$key]) ) {
341 341
 			$entry[$key] = $this->getEntryString( $entry, $key );
342 342
 		}
343 343
 		return $entry;
@@ -351,11 +351,11 @@  discard block
 block discarded – undo
351 351
 		$defaultString = array_fill_keys( ['id', 's1', 's2', 'p1', 'p2'], '' );
352 352
 		$strings = array_filter( $strings, 'is_array' );
353 353
 		foreach( $strings as &$string ) {
354
-			$string['type'] = isset( $string['p1'] ) ? 'plural' : 'single';
354
+			$string['type'] = isset($string['p1']) ? 'plural' : 'single';
355 355
 			$string = wp_parse_args( $string, $defaultString );
356 356
 		}
357 357
 		return array_filter( $strings, function( $string ) {
358
-			return !empty( $string['id'] );
358
+			return !empty($string['id']);
359 359
 		});
360 360
 	}
361 361
 
@@ -379,10 +379,10 @@  discard block
 block discarded – undo
379 379
 	 */
380 380
 	protected function translatePlural( $domain, array $string, array $args )
381 381
 	{
382
-		if( !empty( $string['s2'] )) {
382
+		if( !empty($string['s2']) ) {
383 383
 			$args['single'] = $string['s2'];
384 384
 		}
385
-		if( !empty( $string['p2'] )) {
385
+		if( !empty($string['p2']) ) {
386 386
 			$args['plural'] = $string['p2'];
387 387
 		}
388 388
 		return get_translations_for_domain( $domain )->translate_plural(
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 	 */
400 400
 	protected function translateSingle( $domain, array $string, array $args )
401 401
 	{
402
-		if( !empty( $string['s2'] )) {
402
+		if( !empty($string['s2']) ) {
403 403
 			$args['single'] = $string['s2'];
404 404
 		}
405 405
 		return get_translations_for_domain( $domain )->translate(
Please login to merge, or discard this patch.