Test Failed
Push — master ( 98f0ba...364259 )
by Paul
03:58
created
plugin/Modules/Html/Fields/YesNo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 				'no' => __( 'No', 'site-reviews' ),
18 18
 				'yes' => __( 'Yes', 'site-reviews' ),
19 19
 			],
20
-		]);
20
+		] );
21 21
 		$this->builder->tag = 'input';
22 22
 		return $this->builder->buildFormInput();
23 23
 	}
Please login to merge, or discard this patch.
plugin/Modules/Html/Builder.php 2 patches
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	{
66 66
 		$instance = new static();
67 67
 		$instance->setTagFromMethod( $method );
68
-		call_user_func_array( [$instance, 'normalize'], $args += ['',''] );
68
+		call_user_func_array( [$instance, 'normalize'], $args += ['', ''] );
69 69
 		$tags = array_merge( static::TAGS_FORM, static::TAGS_STRUCTURE, static::TAGS_TEXT );
70 70
 		$generatedTag = in_array( $instance->tag, $tags )
71 71
 			? $instance->buildTag()
@@ -89,8 +89,8 @@  discard block
 block discarded – undo
89 89
 			'render' => 'is_bool',
90 90
 			'tag' => 'is_string',
91 91
 		];
92
-		if( !isset( $properties[$property] )
93
-			|| empty( array_filter( [$value], $properties[$property] ))
92
+		if( !isset($properties[$property])
93
+			|| empty(array_filter( [$value], $properties[$property] ))
94 94
 		)return;
95 95
 		$this->$property = $value;
96 96
 	}
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	public function getOpeningTag()
110 110
 	{
111
-		$attributes = glsr( Attributes::class )->{$this->tag}( $this->args )->toString();
111
+		$attributes = glsr( Attributes::class )->{$this->tag}($this->args)->toString();
112 112
 		return '<'.trim( $this->tag.' '.$attributes ).'>';
113 113
 	}
114 114
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 	protected function buildCustomField()
119 119
 	{
120 120
 		$className = glsr( Helper::class )->buildClassName( $this->tag, __NAMESPACE__.'\Fields' );
121
-		if( !class_exists( $className )) {
121
+		if( !class_exists( $className ) ) {
122 122
 			glsr_log()->error( 'Field missing: '.$className );
123 123
 			return;
124 124
 		}
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 	 */
131 131
 	protected function buildDefaultTag( $text = '' )
132 132
 	{
133
-		if( empty( $text )) {
133
+		if( empty($text) ) {
134 134
 			$text = $this->args['text'];
135 135
 		}
136 136
 		return $this->getOpeningTag().$text.$this->getClosingTag();
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 	 */
142 142
 	protected function buildFieldDescription()
143 143
 	{
144
-		if( !empty( $this->args['description'] )) {
144
+		if( !empty($this->args['description']) ) {
145 145
 			return $this->small( $this->args['description'] );
146 146
 		}
147 147
 	}
@@ -151,10 +151,10 @@  discard block
 block discarded – undo
151 151
 	 */
152 152
 	protected function buildFormInput()
153 153
 	{
154
-		if( !in_array( $this->args['type'], ['checkbox', 'radio'] )) {
154
+		if( !in_array( $this->args['type'], ['checkbox', 'radio'] ) ) {
155 155
 			return $this->buildFormLabel().$this->getOpeningTag();
156 156
 		}
157
-		return empty( $this->args['options'] )
157
+		return empty($this->args['options'])
158 158
 			? $this->buildFormInputChoice()
159 159
 			: $this->buildFormInputMultiChoice();
160 160
 	}
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 				'name' => $this->args['name'].'[]',
179 179
 				'text' => $this->args['options'][$key],
180 180
 				'value' => $key,
181
-			]));
181
+			]) );
182 182
 		});
183 183
 		return $this->ul( $options );
184 184
 	}
@@ -188,11 +188,11 @@  discard block
 block discarded – undo
188 188
 	 */
189 189
 	protected function buildFormLabel()
190 190
 	{
191
-		if( empty( $this->args['label'] ) || $this->args['type'] == 'hidden' )return;
192
-		return $this->label([
191
+		if( empty($this->args['label']) || $this->args['type'] == 'hidden' )return;
192
+		return $this->label( [
193 193
 			'for' => $this->args['id'],
194 194
 			'text' => $this->args['label'],
195
-		]);
195
+		] );
196 196
 	}
197 197
 
198 198
 	/**
@@ -209,11 +209,11 @@  discard block
 block discarded – undo
209 209
 	protected function buildFormSelectOptions()
210 210
 	{
211 211
 		return array_reduce( array_keys( $this->args['options'] ), function( $carry, $key ) {
212
-			return $carry.$this->option([
212
+			return $carry.$this->option( [
213 213
 				'selected' => $this->args['value'] == $key,
214 214
 				'text' => $this->args['options'][$key],
215 215
 				'value' => $key,
216
-			]);
216
+			] );
217 217
 		});
218 218
 	}
219 219
 
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 	 */
231 231
 	protected function buildTag()
232 232
 	{
233
-		if( !in_array( $this->tag, static::TAGS_FORM )) {
233
+		if( !in_array( $this->tag, static::TAGS_FORM ) ) {
234 234
 			return $this->buildDefaultTag();
235 235
 		}
236 236
 		return call_user_func( [$this, 'buildForm'.ucfirst( $this->tag )] ).$this->buildFieldDescription();
@@ -242,13 +242,13 @@  discard block
 block discarded – undo
242 242
 	 */
243 243
 	protected function normalize( ...$params )
244 244
 	{
245
-		if( is_string( $params[0] ) || is_numeric( $params[0] )) {
245
+		if( is_string( $params[0] ) || is_numeric( $params[0] ) ) {
246 246
 			$this->setNameOrTextAttributeForTag( $params[0] );
247 247
 		}
248
-		if( is_array( $params[0] )) {
248
+		if( is_array( $params[0] ) ) {
249 249
 			$this->args += $params[0];
250 250
 		}
251
-		else if( is_array( $params[1] )) {
251
+		else if( is_array( $params[1] ) ) {
252 252
 			$this->args += $params[1];
253 253
 		}
254 254
 		$this->args = glsr( BuilderDefaults::class )->merge( $this->args );
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
 	protected function setTagFromMethod( $method )
274 274
 	{
275 275
 		$this->tag = strtolower( $method );
276
-		if( in_array( $this->tag, static::INPUT_TYPES )) {
276
+		if( in_array( $this->tag, static::INPUT_TYPES ) ) {
277 277
 			$this->args['type'] = $this->tag;
278 278
 			$this->tag = 'input';
279 279
 		}
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,9 @@  discard block
 block discarded – undo
91 91
 		];
92 92
 		if( !isset( $properties[$property] )
93 93
 			|| empty( array_filter( [$value], $properties[$property] ))
94
-		)return;
94
+		) {
95
+			return;
96
+		}
95 97
 		$this->$property = $value;
96 98
 	}
97 99
 
@@ -188,7 +190,9 @@  discard block
 block discarded – undo
188 190
 	 */
189 191
 	protected function buildFormLabel()
190 192
 	{
191
-		if( empty( $this->args['label'] ) || $this->args['type'] == 'hidden' )return;
193
+		if( empty( $this->args['label'] ) || $this->args['type'] == 'hidden' ) {
194
+			return;
195
+		}
192 196
 		return $this->label([
193 197
 			'for' => $this->args['id'],
194 198
 			'text' => $this->args['label'],
Please login to merge, or discard this patch.
plugin/Modules/Html/Partials/SiteReviewsForm.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,14 +14,14 @@
 block discarded – undo
14 14
 	{
15 15
 		$partial = glsr( Html::class )->buildTemplate( 'templates/reviews-form', [
16 16
 			'globals' => $args,
17
-		]);
17
+		] );
18 18
 		$form = glsr( Builder::class )->form( $partial, [
19 19
 			'class' => 'glsr-form',
20 20
 			'id' => $args['id'],
21 21
 			'method' => 'post',
22
-		]);
22
+		] );
23 23
 		return glsr( Builder::class )->div( $form, [
24 24
 			'class' => 'glsr-form-wrap '.$args['class'],
25
-		]);
25
+		] );
26 26
 	}
27 27
 }
Please login to merge, or discard this patch.
plugin/Modules/Html/Partials/StarRating.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,11 +15,11 @@
 block discarded – undo
15 15
 	public function build( $name, array $args = [] )
16 16
 	{
17 17
 		$roundedRating = floor( round( $args['rating'], 1 ) * 2 ) / 2;
18
-		$percentage = glsr( Builder::class )->span([
19
-			'style' => 'width:'.( $roundedRating / Rating::MAX_RATING * 100 ).'%;',
20
-		]);
18
+		$percentage = glsr( Builder::class )->span( [
19
+			'style' => 'width:'.($roundedRating / Rating::MAX_RATING * 100).'%;',
20
+		] );
21 21
 		return glsr( Builder::class )->span( $percentage, [
22 22
 			'class' => 'glsr-star-rating',
23
-		]);
23
+		] );
24 24
 	}
25 25
 }
Please login to merge, or discard this patch.
plugin/Modules/Html/Partial.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 	public function build( $partialPath, array $args = [] )
14 14
 	{
15 15
 		$className = glsr( Helper::class )->buildClassName( $partialPath, 'Modules\Html\Partials' );
16
-		if( !class_exists( $className )) {
16
+		if( !class_exists( $className ) ) {
17 17
 			glsr_log()->error( 'Partial missing: '.$className );
18 18
 			return;
19 19
 		}
Please login to merge, or discard this patch.
plugin/Modules/Logger.php 2 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	public function get()
110 110
 	{
111
-		return empty( $this->log )
111
+		return empty($this->log)
112 112
 			? __( 'Log is empty', 'site-reviews' )
113 113
 			: $this->log;
114 114
 	}
@@ -134,9 +134,9 @@  discard block
 block discarded – undo
134 134
 	{
135 135
 		$constants = (new ReflectionClass( __CLASS__ ))->getConstants();
136 136
 		$constants = (array)apply_filters( Application::ID.'/log-levels', $constants );
137
-		if( in_array( $level, $constants, true )) {
137
+		if( in_array( $level, $constants, true ) ) {
138 138
 			$entry = $this->buildLogEntry( $level, $message, $context );
139
-			file_put_contents( $this->file, $entry, FILE_APPEND|LOCK_EX );
139
+			file_put_contents( $this->file, $entry, FILE_APPEND | LOCK_EX );
140 140
 			$this->reset();
141 141
 		}
142 142
 		return $this;
@@ -186,15 +186,15 @@  discard block
 block discarded – undo
186 186
 	protected function getDebugInformation()
187 187
 	{
188 188
 		$caller = debug_backtrace( false, 6 );
189
-		$index = array_search( 'log', array_column( $caller, 'function' ));
189
+		$index = array_search( 'log', array_column( $caller, 'function' ) );
190 190
 		if( $index === false
191
-			|| !isset( $caller[$index+2]['class'] )
192
-			|| !isset( $caller[$index+2]['function'] )
191
+			|| !isset($caller[$index + 2]['class'])
192
+			|| !isset($caller[$index + 2]['function'])
193 193
 		)return;
194 194
 		return sprintf( '[%s()->%s:%s] ',
195
-			$caller[$index+2]['class'],
196
-			$caller[$index+2]['function'],
197
-			$caller[$index+1]['line']
195
+			$caller[$index + 2]['class'],
196
+			$caller[$index + 2]['function'],
197
+			$caller[$index + 1]['line']
198 198
 		);
199 199
 	}
200 200
 
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
 	 */
207 207
 	protected function interpolate( $message, $context = [] )
208 208
 	{
209
-		if( $this->isObjectOrArray( $message ) || !is_array( $context )) {
209
+		if( $this->isObjectOrArray( $message ) || !is_array( $context ) ) {
210 210
 			return print_r( $message, true );
211 211
 		}
212 212
 		$replace = [];
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 		if( $value instanceof DateTime ) {
235 235
 			$value = $value->format( 'Y-m-d H:i:s' );
236 236
 		}
237
-		else if( $this->isObjectOrArray( $value )) {
237
+		else if( $this->isObjectOrArray( $value ) ) {
238 238
 			$value = json_encode( $value );
239 239
 		}
240 240
 		return (string)$value;
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 			$this->clear();
251 251
 			file_put_contents(
252 252
 				$this->file,
253
-				$this->buildLogEntry( 'info', __( 'Log has been automatically reset (512 KB max size)', 'site-reviews' ))
253
+				$this->buildLogEntry( 'info', __( 'Log has been automatically reset (512 KB max size)', 'site-reviews' ) )
254 254
 			);
255 255
 		}
256 256
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,9 @@
 block discarded – undo
190 190
 		if( $index === false
191 191
 			|| !isset( $caller[$index+2]['class'] )
192 192
 			|| !isset( $caller[$index+2]['function'] )
193
-		)return;
193
+		) {
194
+			return;
195
+		}
194 196
 		return sprintf( '[%s()->%s:%s] ',
195 197
 			$caller[$index+2]['class'],
196 198
 			$caller[$index+2]['function'],
Please login to merge, or discard this patch.
plugin/Commands/TogglePinned.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 	public function __construct( $input )
11 11
 	{
12 12
 		$this->id = $input['id'];
13
-		$this->pinned = isset( $input['pinned'] )
13
+		$this->pinned = isset($input['pinned'])
14 14
 			? wp_validate_boolean( $input['pinned'] )
15 15
 			: null;
16 16
 	}
Please login to merge, or discard this patch.
plugin/Database/SqlQueries.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -23,13 +23,13 @@  discard block
 block discarded – undo
23 23
 	 */
24 24
 	public function getReviewCounts( $metaKey )
25 25
 	{
26
-		return (array) $this->db->get_results("
26
+		return (array)$this->db->get_results( "
27 27
 			SELECT m.meta_value AS name, COUNT(*) num_posts
28 28
 			FROM {$this->db->posts} AS p
29 29
 			INNER JOIN {$this->db->postmeta} AS m ON p.ID = m.post_id
30 30
 			WHERE p.post_type = '{$this->postType}' AND m.meta_key = '{$metaKey}'
31 31
 			GROUP BY name
32
-		");
32
+		" );
33 33
 	}
34 34
 
35 35
 	/**
@@ -38,14 +38,14 @@  discard block
 block discarded – undo
38 38
 	 */
39 39
 	public function getReviewPostId( $metaReviewId )
40 40
 	{
41
-		$postId = $this->db->get_var("
41
+		$postId = $this->db->get_var( "
42 42
 			SELECT p.ID
43 43
 			FROM {$this->db->posts} AS p
44 44
 			INNER JOIN {$this->db->postmeta} AS pm ON p.ID = pm.post_id
45 45
 			WHERE p.post_type = '{$this->postType}'
46 46
 			AND pm.meta_key = 'review_id'
47 47
 			AND pm.meta_value = '{$metaReviewId}'
48
-		");
48
+		" );
49 49
 		return intval( $postId );
50 50
 	}
51 51
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	 */
56 56
 	public function getReviewIdsByType( $metaReviewType )
57 57
 	{
58
-		$query = $this->db->get_col("
58
+		$query = $this->db->get_col( "
59 59
 			SELECT m1.meta_value AS review_id
60 60
 			FROM {$this->db->posts} AS p
61 61
 			INNER JOIN {$this->db->postmeta} AS m1 ON p.ID = m1.post_id
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
 			AND m1.meta_key = 'review_id'
65 65
 			AND m2.meta_key = 'review_type'
66 66
 			AND m2.meta_value = '{$metaReviewType}'
67
-		");
68
-		return array_keys( array_flip( $query ));
67
+		" );
68
+		return array_keys( array_flip( $query ) );
69 69
 	}
70 70
 
71 71
 	/**
@@ -78,13 +78,13 @@  discard block
 block discarded – undo
78 78
 		$queryBuilder = glsr( QueryBuilder::class );
79 79
 		$keys = $queryBuilder->buildSqlOr( $keys, "pm.meta_key = '%s'" );
80 80
 		$status = $queryBuilder->buildSqlOr( $status, "p.post_status = '%s'" );
81
-		return $this->db->get_col("
81
+		return $this->db->get_col( "
82 82
 			SELECT DISTINCT pm.meta_value FROM {$this->db->postmeta} pm
83 83
 			LEFT JOIN {$this->db->posts} p ON p.ID = pm.post_id
84 84
 			WHERE p.post_type = '{$this->postType}'
85 85
 			AND ({$keys})
86 86
 			AND ({$status})
87 87
 			ORDER BY pm.meta_value
88
-		");
88
+		" );
89 89
 	}
90 90
 }
Please login to merge, or discard this patch.
plugin/Defaults/CreateReviewDefaults.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 			'author' => '',
17 17
 			'avatar' => '',
18 18
 			'content' => '',
19
-			'date' => get_date_from_gmt( gmdate( 'Y-m-d H:i:s' )),
19
+			'date' => get_date_from_gmt( gmdate( 'Y-m-d H:i:s' ) ),
20 20
 			'email' => '',
21 21
 			'ip_address' => '',
22 22
 			'pinned' => false,
Please login to merge, or discard this patch.