Test Failed
Push — master ( a95317...fac2f0 )
by Paul
03:50
created
plugin/Modules/Html/Partials/Sections.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 		$this->normalize( $args );
27 27
 		if( count( $this->sections ) < 2 )return;
28 28
 		$links = array_reduce( array_keys( $this->sections ), function( $result, $section ) {
29
-			return $result.glsr( Builder::class )->li( $this->buildLink( $section ));
29
+			return $result.glsr( Builder::class )->li( $this->buildLink( $section ) );
30 30
 		});
31 31
 		return glsr( Builder::class )->ul( $links, ['class' => 'subsubsub glsr-subsubsub'] );
32 32
 	}
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 			'section' => '',
42 42
 			'tab' => '',
43 43
 			'tabs' => [],
44
-		]);
44
+		] );
45 45
 		$this->sections = $this->args['tabs'][$this->args['tab']]['sections'];
46 46
 	}
47 47
 
@@ -61,6 +61,6 @@  discard block
 block discarded – undo
61 61
 		return glsr( Builder::class )->a( $this->sections[$section], [
62 62
 			'class' => $class,
63 63
 			'href' => '?post_type='.Application::POST_TYPE.'&page='.$this->args['page'].'&tab='.$this->args['tab'].'&section='.$section,
64
-		]).$separator;
64
+		] ).$separator;
65 65
 	}
66 66
 }
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/Partials/SiteReviewsSummary.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 		return glsr( Builder::class )->div( $this->buildSummary().$this->buildPercentageBars(), [
39 39
 			'class' => 'glsr-summary-wrap '.$args['class'],
40 40
 			'id' => $args['id'],
41
-		]);
41
+		] );
42 42
 	}
43 43
 
44 44
 	/**
@@ -51,20 +51,20 @@  discard block
 block discarded – undo
51 51
 		$build = glsr( Builder::class );
52 52
 		$label = $build->span( $this->args['labels'][$index], [
53 53
 			'class' => 'glsr-bar-label',
54
-		]);
55
-		$barBackground = $build->span([
54
+		] );
55
+		$barBackground = $build->span( [
56 56
 			'class' => 'glsr-bar-percent',
57 57
 			'style' => 'width:'.$percent,
58
-		]);
58
+		] );
59 59
 		$barPercent = $build->span( $barBackground, [
60 60
 			'class' => 'glsr-bar-background',
61
-		]);
61
+		] );
62 62
 		$percent = $build->span( $percent, [
63 63
 			'class' => 'glsr-bar-count',
64
-		]);
64
+		] );
65 65
 		return $build->div( $label.$barPercent.$percent, [
66 66
 			'class' => 'glsr-percentage-bar',
67
-		]);
67
+		] );
68 68
 	}
69 69
 
70 70
 	/**
@@ -72,15 +72,15 @@  discard block
 block discarded – undo
72 72
 	 */
73 73
 	protected function buildPercentageBars()
74 74
 	{
75
-		if( in_array( 'bars', $this->args['hide'] ))return;
76
-		$percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->reviews->results ));
75
+		if( in_array( 'bars', $this->args['hide'] ) )return;
76
+		$percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->reviews->results ) );
77 77
 		$range = range( Rating::MAX_RATING, 1 );
78
-		$bars = array_reduce( $range, function( $carry, $index ) use( $percentages ) {
78
+		$bars = array_reduce( $range, function( $carry, $index ) use($percentages) {
79 79
 			return $carry.$this->buildPercentageBar( intval( $index ), $percentages[$index] );
80 80
 		});
81 81
 		return glsr( Builder::class )->div( $bars, [
82 82
 			'class' => 'glsr-percentage-bars',
83
-		]);
83
+		] );
84 84
 	}
85 85
 
86 86
 	/**
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	{
91 91
 		if( !$this->args['schema'] )return;
92 92
 		$schema = glsr( Schema::class );
93
-		$schema->store( $schema->buildSummary( $this->args ));
93
+		$schema->store( $schema->buildSummary( $this->args ) );
94 94
 	}
95 95
 
96 96
 	/**
@@ -99,10 +99,10 @@  discard block
 block discarded – undo
99 99
 	protected function buildSummary()
100 100
 	{
101 101
 		$summary = $this->buildSummaryRating().$this->buildSummaryStars().$this->buildSummaryText();
102
-		if( empty( $summary ))return;
102
+		if( empty($summary) )return;
103 103
 		return glsr( Builder::class )->div( $summary, [
104 104
 			'class' => 'glsr-summary',
105
-		]);
105
+		] );
106 106
 	}
107 107
 
108 108
 	/**
@@ -110,10 +110,10 @@  discard block
 block discarded – undo
110 110
 	 */
111 111
 	protected function buildSummaryRating()
112 112
 	{
113
-		if( in_array( 'rating', $this->args['hide'] ))return;
113
+		if( in_array( 'rating', $this->args['hide'] ) )return;
114 114
 		return glsr( Builder::class )->span( $this->rating, [
115 115
 			'class' => 'glsr-summary-rating',
116
-		]);
116
+		] );
117 117
 	}
118 118
 
119 119
 	/**
@@ -121,13 +121,13 @@  discard block
 block discarded – undo
121 121
 	 */
122 122
 	protected function buildSummaryStars()
123 123
 	{
124
-		if( in_array( 'stars', $this->args['hide'] ))return;
124
+		if( in_array( 'stars', $this->args['hide'] ) )return;
125 125
 		$stars = glsr( Html::class )->buildPartial( 'star-rating', [
126 126
 			'rating' => $this->rating,
127
-		]);
127
+		] );
128 128
 		return glsr( Builder::class )->span( $stars, [
129 129
 			'class' => 'glsr-summary-stars',
130
-		]);
130
+		] );
131 131
 	}
132 132
 
133 133
 	/**
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
 	 */
136 136
 	protected function buildSummaryText()
137 137
 	{
138
-		if( in_array( 'summary', $this->args['hide'] ))return;
138
+		if( in_array( 'summary', $this->args['hide'] ) )return;
139 139
 		$count = count( $this->reviews->results );
140
-		if( empty( $this->args['text'] )) {
140
+		if( empty($this->args['text']) ) {
141 141
 			 $this->args['text'] = _nx(
142 142
 				'{rating} out of {max} stars (based on %d review)',
143 143
 				'{rating} out of {max} stars (based on %d reviews)',
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
147 147
 			);
148 148
 		}
149 149
 		$summary = str_replace(
150
-			['{rating}','{max}'], [$this->rating, Rating::MAX_RATING], $this->args['text']
150
+			['{rating}', '{max}'], [$this->rating, Rating::MAX_RATING], $this->args['text']
151 151
 		);
152
-		return str_replace( ['%s','%d'], $count, $summary );
152
+		return str_replace( ['%s', '%d'], $count, $summary );
153 153
 	}
154 154
 
155 155
 	/**
@@ -157,6 +157,6 @@  discard block
 block discarded – undo
157 157
 	 */
158 158
 	protected function isHidden()
159 159
 	{
160
-		return empty( $this->reviews->results ) && in_array( 'if_empty', $this->args['hide'] );
160
+		return empty($this->reviews->results) && in_array( 'if_empty', $this->args['hide'] );
161 161
 	}
162 162
 }
Please login to merge, or discard this patch.
plugin/Modules/Html/Attributes.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 	 */
113 113
 	protected function filterAttributes( array $allowedAttributeKeys )
114 114
 	{
115
-		return array_intersect_key( $this->attributes, array_flip( $allowedAttributeKeys ));
115
+		return array_intersect_key( $this->attributes, array_flip( $allowedAttributeKeys ) );
116 116
 	}
117 117
 
118 118
 	/**
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 		$globalAttributes = $this->filterAttributes( static::GLOBAL_ATTRIBUTES );
124 124
 		$wildcards = [];
125 125
 		foreach( static::GLOBAL_WILDCARD_ATTRIBUTES as $wildcard ) {
126
-			$newWildcards = array_filter( $this->attributes, function( $key ) use( $wildcard ) {
126
+			$newWildcards = array_filter( $this->attributes, function( $key ) use($wildcard) {
127 127
 				return glsr( Helper::class )->startsWith( $wildcard, $key );
128 128
 			}, ARRAY_FILTER_USE_KEY );
129 129
 			$wildcards = array_merge( $wildcards, $newWildcards );
@@ -177,11 +177,11 @@  discard block
 block discarded – undo
177 177
 	protected function normalizeBooleanAttributes()
178 178
 	{
179 179
 		foreach( $this->attributes as $key => $value ) {
180
-			if( $this->isAttributeKeyNumeric( $key, $value )) {
180
+			if( $this->isAttributeKeyNumeric( $key, $value ) ) {
181 181
 				$key = $value;
182 182
 				$value = true;
183 183
 			}
184
-			if( !in_array( $key, static::BOOLEAN_ATTRIBUTES ))continue;
184
+			if( !in_array( $key, static::BOOLEAN_ATTRIBUTES ) )continue;
185 185
 			$this->attributes[$key] = wp_validate_boolean( $value );
186 186
 		}
187 187
 	}
@@ -192,12 +192,12 @@  discard block
 block discarded – undo
192 192
 	protected function normalizeDataAttributes()
193 193
 	{
194 194
 		foreach( $this->attributes as $key => $value ) {
195
-			if( $this->isAttributeKeyNumeric( $key, $value )) {
195
+			if( $this->isAttributeKeyNumeric( $key, $value ) ) {
196 196
 				$key = $value;
197 197
 				$value = '';
198 198
 			}
199
-			if( !glsr( Helper::class )->startsWith( 'data-', $key ))continue;
200
-			if( is_array( $value )) {
199
+			if( !glsr( Helper::class )->startsWith( 'data-', $key ) )continue;
200
+			if( is_array( $value ) ) {
201 201
 				$value = json_encode( $value, JSON_HEX_APOS | JSON_NUMERIC_CHECK | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES );
202 202
 			}
203 203
 			$this->attributes[$key] = $value;
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 	protected function normalizeStringAttributes()
211 211
 	{
212 212
 		foreach( $this->attributes as $key => $value ) {
213
-			if( !is_string( $value ))continue;
213
+			if( !is_string( $value ) )continue;
214 214
 			$this->attributes[$key] = trim( $value );
215 215
 		}
216 216
 	}
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
 	{
224 224
 		if( $method != 'input' )return;
225 225
 		$attributes = wp_parse_args( $this->attributes, ['type' => ''] );
226
-		if( !in_array( $attributes['type'], static::INPUT_TYPES )) {
226
+		if( !in_array( $attributes['type'], static::INPUT_TYPES ) ) {
227 227
 			$this->attributes['type'] = 'text';
228 228
 		}
229 229
 	}
@@ -237,11 +237,11 @@  discard block
 block discarded – undo
237 237
 		$dataAttributes = [];
238 238
 		foreach( $this->attributes as $key => $value ) {
239 239
 			if( in_array( $key, static::BOOLEAN_ATTRIBUTES ) && !$value ) {
240
-				unset( $attributes[$key] );
240
+				unset($attributes[$key]);
241 241
 			}
242
-			if( glsr( Helper::class )->startsWith( 'data-', $key )) {
242
+			if( glsr( Helper::class )->startsWith( 'data-', $key ) ) {
243 243
 				$dataAttributes[$key] = $value;
244
-				unset( $attributes[$key] );
244
+				unset($attributes[$key]);
245 245
 			}
246 246
 		}
247 247
 		$this->attributes = array_merge( array_filter( $attributes ), $dataAttributes );
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/Rating.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
 	{
51 51
 		$average = count( $reviews );
52 52
 		if( $average > 0 ) {
53
-			$average = round( $this->getTotal( $reviews ) / $average, intval( $roundBy ));
53
+			$average = round( $this->getTotal( $reviews ) / $average, intval( $roundBy ) );
54 54
 		}
55
-		return floatval( apply_filters( 'site-reviews/rating/average', $average, $reviews ));
55
+		return floatval( apply_filters( 'site-reviews/rating/average', $average, $reviews ) );
56 56
 	}
57 57
 
58 58
 	/**
@@ -60,12 +60,12 @@  discard block
 block discarded – undo
60 60
 	 */
61 61
 	public function getCounts( array $reviews )
62 62
 	{
63
-		$counts = array_fill_keys( [5,4,3,2,1], [] );
64
-		array_walk( $counts, function( &$count, $key ) use( $reviews ) {
65
-			$count = count( array_filter( $reviews, function( $review ) use( $key ) {
66
-				if( !isset( $review->rating ))return;
63
+		$counts = array_fill_keys( [5, 4, 3, 2, 1], [] );
64
+		array_walk( $counts, function( &$count, $key ) use($reviews) {
65
+			$count = count( array_filter( $reviews, function( $review ) use($key) {
66
+				if( !isset($review->rating) )return;
67 67
 				return $review->rating == $key;
68
-			}));
68
+			}) );
69 69
 		});
70 70
 		return $counts;
71 71
 	}
@@ -86,10 +86,10 @@  discard block
 block discarded – undo
86 86
 		if( !$numRatings )return 0;
87 87
 		$positiveRatings = count( array_filter( $upDownRatings, function( $value ) {
88 88
 			return $value > 0;
89
-		}));
89
+		}) );
90 90
 		$z = static::CONFIDENCE_LEVEL_Z_SCORES[$confidencePercentage];
91 91
 		$phat = 1 * $positiveRatings / $numRatings;
92
-		return ( $phat + $z * $z / ( 2 * $numRatings ) - $z * sqrt(( $phat * ( 1 - $phat ) + $z * $z / ( 4 * $numRatings )) / $numRatings )) / ( 1 + $z * $z / $numRatings );
92
+		return ($phat + $z * $z / (2 * $numRatings) - $z * sqrt( ($phat * (1 - $phat) + $z * $z / (4 * $numRatings)) / $numRatings )) / (1 + $z * $z / $numRatings);
93 93
 	}
94 94
 
95 95
 	/**
@@ -108,9 +108,9 @@  discard block
 block discarded – undo
108 108
 	public function getPercentages( array $reviews )
109 109
 	{
110 110
 		$counts = $this->getCounts( $reviews );
111
-		array_walk( $counts, function( &$count, $rating ) use( $counts ) {
111
+		array_walk( $counts, function( &$count, $rating ) use($counts) {
112 112
 			$total = array_sum( $counts );
113
-			$count = !empty( $total ) && !empty( $counts[$rating] )
113
+			$count = !empty($total) && !empty($counts[$rating])
114 114
 				? $counts[$rating] / array_sum( $counts ) * 100
115 115
 				: 0;
116 116
 		});
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 			$this->getRankingUsingImdb( $reviews ),
128 128
 			$reviews,
129 129
 			$this
130
-		));
130
+		) );
131 131
 	}
132 132
 
133 133
 	/**
@@ -157,11 +157,11 @@  discard block
 block discarded – undo
157 157
 		$bayesMinimal = 10; // confidence
158 158
 		// Represents a prior (your prior opinion without data) for the average star rating. A higher prior also means a higher margin for error.
159 159
 		// This could also be the average score of all items instead of a fixed value.
160
-		$bayesMean = ( $confidencePercentage / 100 ) * static::MAX_RATING; // prior, 70% = 3.5
160
+		$bayesMean = ($confidencePercentage / 100) * static::MAX_RATING; // prior, 70% = 3.5
161 161
 		$numOfReviews = count( $reviews );
162 162
 		$avgRating = $this->getAverage( $reviews );
163 163
 		return $avgRating > 0
164
-			? (( $bayesMinimal * $bayesMean ) + ( $avgRating * $numOfReviews )) / ( $bayesMinimal + $numOfReviews )
164
+			? (($bayesMinimal * $bayesMean) + ($avgRating * $numOfReviews)) / ($bayesMinimal + $numOfReviews)
165 165
 			: 0;
166 166
 	}
167 167
 
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 		$weight = $this->getWeight( $ratingCounts, $ratingCountsSum );
183 183
 		$weightPow2 = $this->getWeight( $ratingCounts, $ratingCountsSum, true );
184 184
 		$zScore = static::CONFIDENCE_LEVEL_Z_SCORES[$confidencePercentage];
185
-		return $weight - $zScore * sqrt(( $weightPow2 - pow( $weight, 2 )) / ( $ratingCountsSum + 1 ));
185
+		return $weight - $zScore * sqrt( ($weightPow2 - pow( $weight, 2 )) / ($ratingCountsSum + 1) );
186 186
 	}
187 187
 
188 188
 	/**
@@ -202,14 +202,14 @@  discard block
 block discarded – undo
202 202
 		$remainders = array_column( $percentages, 'remainder' );
203 203
 		array_multisort( $remainders, SORT_DESC, SORT_STRING, $indexes, SORT_DESC, $percentages );
204 204
 		$i = 0;
205
-		if( array_sum( array_column( $percentages, 'percent' )) > 0 ) {
206
-			while( array_sum( array_column( $percentages, 'percent' )) < $target ) {
205
+		if( array_sum( array_column( $percentages, 'percent' ) ) > 0 ) {
206
+			while( array_sum( array_column( $percentages, 'percent' ) ) < $target ) {
207 207
 				$percentages[$i]['percent']++;
208 208
 				$i++;
209 209
 			}
210 210
 		}
211 211
 		array_multisort( $indexes, SORT_DESC, $percentages );
212
-		return array_combine( $indexes, array_column( $percentages, 'percent' ));
212
+		return array_combine( $indexes, array_column( $percentages, 'percent' ) );
213 213
 	}
214 214
 
215 215
 	/**
@@ -220,9 +220,9 @@  discard block
 block discarded – undo
220 220
 	protected function getWeight( array $ratingCounts, $ratingCountsSum, $powerOf2 = false )
221 221
 	{
222 222
 		return array_reduce( array_keys( $ratingCounts ),
223
-			function( $count, $rating ) use( $ratingCounts, $ratingCountsSum, $powerOf2 ) {
223
+			function( $count, $rating ) use($ratingCounts, $ratingCountsSum, $powerOf2) {
224 224
 				$ratingLevel = $powerOf2 ? pow( $rating, 2 ) : $rating;
225
-				return $count + ( $ratingLevel * ( $ratingCounts[$rating] + 1 )) / $ratingCountsSum;
225
+				return $count + ($ratingLevel * ($ratingCounts[$rating] + 1)) / $ratingCountsSum;
226 226
 			}
227 227
 		);
228 228
 	}
Please login to merge, or discard this patch.
plugin/Modules/Akismet.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
 			// 'is_test' => 1,
32 32
 		];
33 33
 		foreach( $_SERVER as $key => $value ) {
34
-			if( is_array( $value ) || in_array( $key, ['HTTP_COOKIE', 'HTTP_COOKIE2', 'PHP_AUTH_PW'] ))continue;
34
+			if( is_array( $value ) || in_array( $key, ['HTTP_COOKIE', 'HTTP_COOKIE2', 'PHP_AUTH_PW'] ) )continue;
35 35
 			$submission[$key] = $value;
36 36
 		}
37
-		return $this->check( apply_filters( 'site-reviews/akismet/submission', $submission, $review ));
37
+		return $this->check( apply_filters( 'site-reviews/akismet/submission', $submission, $review ) );
38 38
 	}
39 39
 
40 40
 	/**
@@ -57,12 +57,12 @@  discard block
 block discarded – undo
57 57
 	{
58 58
 		$query = [];
59 59
 		foreach( $data as $key => $value ) {
60
-			if( is_array( $value ) || is_object( $value ))continue;
60
+			if( is_array( $value ) || is_object( $value ) )continue;
61 61
 			if( $value === false ) {
62 62
 				$value = '0';
63 63
 			}
64 64
 			$value = trim( $value );
65
-			if( !strlen( $value ))continue;
65
+			if( !strlen( $value ) )continue;
66 66
 			$query[] = urlencode( $key ).'='.urlencode( $value );
67 67
 		}
68 68
 		return implode( '&', $query );
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 			|| !is_callable( ['Akismet', 'get_api_key'] )
78 78
 			|| !is_callable( ['Akismet', 'http_post'] )
79 79
 			? false
80
-			: (bool) AkismetPlugin::get_api_key();
80
+			: (bool)AkismetPlugin::get_api_key();
81 81
 		return apply_filters( 'site-reviews/akismet/is-active', $check );
82 82
 	}
83 83
 }
Please login to merge, or discard this patch.
plugin/Commands/RegisterPostType.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,13 +29,13 @@  discard block
 block discarded – undo
29 29
 	{
30 30
 		foreach( $args as $key => $value ) {
31 31
 			$property = glsr( Helper::class )->buildPropertyName( $key );
32
-			if( !property_exists( $this, $property ))continue;
32
+			if( !property_exists( $this, $property ) )continue;
33 33
 			$this->$property = $value;
34
-			unset( $args[$key] );
34
+			unset($args[$key]);
35 35
 		}
36 36
 		$this->args = wp_parse_args( $args, [
37 37
 			'menu_name' => $this->plural,
38
-		]);
38
+		] );
39 39
 	}
40 40
 
41 41
 	/**
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
 			'singular_name' => $this->single,
59 59
 			'uploaded_to_this_item' => sprintf( _x( 'Uploaded to this %s', 'Uploaded to this Post', 'site-reviews' ), $this->single ),
60 60
 			'view_item' => sprintf( _x( 'View %s', 'View Post', 'site-reviews' ), $this->single ),
61
-		]);
62
-		unset( $this->args['menu_name'] );
61
+		] );
62
+		unset($this->args['menu_name']);
63 63
 	}
64 64
 
65 65
 	/**
@@ -68,12 +68,12 @@  discard block
 block discarded – undo
68 68
 	protected function normalizeColumns()
69 69
 	{
70 70
 		$this->columns = ['cb' => ''] + $this->columns;
71
-		if( array_key_exists( 'category', $this->columns )) {
71
+		if( array_key_exists( 'category', $this->columns ) ) {
72 72
 			$keys = array_keys( $this->columns );
73 73
 			$keys[array_search( 'category', $keys )] = 'taxonomy-'.Application::TAXONOMY;
74 74
 			$this->columns = array_combine( $keys, $this->columns );
75 75
 		}
76
-		if( array_key_exists( 'pinned', $this->columns )) {
76
+		if( array_key_exists( 'pinned', $this->columns ) ) {
77 77
 			$stickyValue = '<span class="pinned-icon"><span>'.$this->columns['pinned'].'</span></span>';
78 78
 			$this->columns['pinned'] = $stickyValue;
79 79
 		}
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.