Passed
Push — master ( 914f5e...11621f )
by Paul
04:00
created
views/partials/editor/review.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@  discard block
 block discarded – undo
1 1
 <?php defined( 'WPINC' ) || die; ?>
2 2
 
3 3
 <div id="titlediv">
4
-	<input type="text" id="title" value="<?= $post->post_title ? esc_attr( $post->post_title ) : sprintf( '(%s)', __( 'no title', 'site-reviews' )); ?>" readonly>
4
+	<input type="text" id="title" value="<?= $post->post_title ? esc_attr( $post->post_title ) : sprintf( '(%s)', __( 'no title', 'site-reviews' ) ); ?>" readonly>
5 5
 </div>
6 6
 
7 7
 <div id="contentdiv">
8 8
 	<textarea readonly><?= esc_attr( $post->post_content ); ?></textarea>
9 9
 </div>
10 10
 
11
-<?php if( empty( $response ))return; ?>
11
+<?php if( empty($response) )return; ?>
12 12
 
13 13
 <div class="postbox glsr-response-postbox">
14 14
 	<button type="button" class="handlediv" aria-expanded="true">
@@ -19,6 +19,6 @@  discard block
 block discarded – undo
19 19
 		<span><?= __( 'Public Response', 'site-reviews' ); ?></span>
20 20
 	</h2>
21 21
 	<div class="inside">
22
-		<?= wpautop( esc_attr( $response )); ?>
22
+		<?= wpautop( esc_attr( $response ) ); ?>
23 23
 	</div>
24 24
 </div>
Please login to merge, or discard this patch.
plugin/Commands/CreateReview.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -31,25 +31,25 @@  discard block
 block discarded – undo
31 31
 	public function __construct( $input )
32 32
 	{
33 33
 		$this->request = $input;
34
-		$this->ajax_request = isset( $input['_ajax_request'] );
34
+		$this->ajax_request = isset($input['_ajax_request']);
35 35
 		$this->assigned_to = $this->getNumeric( 'assign_to' );
36
-		$this->author = sanitize_text_field( $this->get( 'name' ));
36
+		$this->author = sanitize_text_field( $this->get( 'name' ) );
37 37
 		$this->avatar = $this->getAvatar();
38
-		$this->blacklisted = isset( $input['blacklisted'] );
39
-		$this->category = sanitize_key( $this->get( 'category' ));
40
-		$this->content = sanitize_textarea_field( $this->get( 'content' ));
38
+		$this->blacklisted = isset($input['blacklisted']);
39
+		$this->category = sanitize_key( $this->get( 'category' ) );
40
+		$this->content = sanitize_textarea_field( $this->get( 'content' ) );
41 41
 		$this->custom = $this->getCustom();
42 42
 		$this->date = $this->getDate( 'date' );
43
-		$this->email = sanitize_email( $this->get( 'email' ));
44
-		$this->form_id = sanitize_key( $this->get( 'form_id' ));
43
+		$this->email = sanitize_email( $this->get( 'email' ) );
44
+		$this->form_id = sanitize_key( $this->get( 'form_id' ) );
45 45
 		$this->ip_address = $this->get( 'ip_address' );
46
-		$this->post_id = intval( $this->get( '_post_id' ));
47
-		$this->rating = intval( $this->get( 'rating' ));
46
+		$this->post_id = intval( $this->get( '_post_id' ) );
47
+		$this->rating = intval( $this->get( 'rating' ) );
48 48
 		$this->referer = $this->get( '_referer' );
49
-		$this->response = sanitize_textarea_field( $this->get( 'response' ));
50
-		$this->terms = !empty( $input['terms'] );
51
-		$this->title = sanitize_text_field( $this->get( 'title' ));
52
-		$this->url = esc_url_raw( $this->get( 'url' ));
49
+		$this->response = sanitize_textarea_field( $this->get( 'response' ) );
50
+		$this->terms = !empty($input['terms']);
51
+		$this->title = sanitize_text_field( $this->get( 'title' ) );
52
+		$this->url = esc_url_raw( $this->get( 'url' ) );
53 53
 	}
54 54
 
55 55
 	/**
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 */
59 59
 	protected function get( $key )
60 60
 	{
61
-		return isset( $this->request[$key] )
61
+		return isset($this->request[$key])
62 62
 			? (string)$this->request[$key]
63 63
 			: '';
64 64
 	}
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 	{
71 71
 		$avatar = $this->get( 'avatar' );
72 72
 		return !filter_var( $avatar, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED | FILTER_FLAG_HOST_REQUIRED | FILTER_FLAG_PATH_REQUIRED )
73
-			? (string)get_avatar_url( $this->get( 'email' ))
73
+			? (string)get_avatar_url( $this->get( 'email' ) )
74 74
 			: $avatar;
75 75
 	}
76 76
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 		];
87 87
 		$custom = $this->request;
88 88
 		foreach( $unset as $value ) {
89
-			unset( $custom[$value] );
89
+			unset($custom[$value]);
90 90
 		}
91 91
 		return $custom;
92 92
 	}
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
 	 */
98 98
 	protected function getDate( $key )
99 99
 	{
100
-		$date = strtotime( $this->get( $key ));
100
+		$date = strtotime( $this->get( $key ) );
101 101
 		if( $date === false ) {
102 102
 			$date = time();
103 103
 		}
104
-		return get_date_from_gmt( gmdate( 'Y-m-d H:i:s', $date ));
104
+		return get_date_from_gmt( gmdate( 'Y-m-d H:i:s', $date ) );
105 105
 	}
106 106
 
107 107
 	/**
Please login to merge, or discard this patch.
plugin/Modules/Polylang.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@  discard block
 block discarded – undo
13 13
 	public function getPost( $postId )
14 14
 	{
15 15
 		$postId = trim( $postId );
16
-		if( empty( $postId ) || !is_numeric( $postId ))return;
16
+		if( empty($postId) || !is_numeric( $postId ) )return;
17 17
 		if( $this->isEnabled() ) {
18
-			$polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() ));
18
+			$polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() ) );
19 19
 		}
20
-		if( !empty( $polylangPostId )) {
20
+		if( !empty($polylangPostId) ) {
21 21
 			$postId = $polylangPostId;
22 22
 		}
23
-		return get_post( intval( $postId ));
23
+		return get_post( intval( $postId ) );
24 24
 	}
25 25
 
26 26
 	/**
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 		foreach( $this->cleanIds( $postIds ) as $postId ) {
36 36
 			$newPostIds = array_merge(
37 37
 				$newPostIds,
38
-				array_values( pll_get_post_translations( $postId ))
38
+				array_values( pll_get_post_translations( $postId ) )
39 39
 			);
40 40
 		}
41 41
 		return $this->cleanIds( $newPostIds );
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	 */
76 76
 	protected function cleanIds( array $postIds )
77 77
 	{
78
-		return array_filter( array_unique( $postIds ));
78
+		return array_filter( array_unique( $postIds ) );
79 79
 	}
80 80
 }
81 81
 
Please login to merge, or discard this patch.
plugin/Widgets/SiteReviewsWidget.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -20,14 +20,14 @@  discard block
 block discarded – undo
20 20
 			'class' => 'widefat',
21 21
 			'label' => __( 'Title', 'site-reviews' ),
22 22
 			'name' => 'title',
23
-		]);
23
+		] );
24 24
 		$this->renderField( 'number', [
25 25
 			'class' => 'small-text',
26 26
 			'default' => 5,
27 27
 			'label' => __( 'How many reviews would you like to display?', 'site-reviews' ),
28 28
 			'max' => 100,
29 29
 			'name' => 'count',
30
-		]);
30
+		] );
31 31
 		$this->renderField( 'select', [
32 32
 			'label' => __( 'What is the minimum rating to display?', 'site-reviews' ),
33 33
 			'name' => 'rating',
@@ -38,22 +38,22 @@  discard block
 block discarded – undo
38 38
 				'2' => sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 ),
39 39
 				'1' => sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 ),
40 40
 			],
41
-		]);
41
+		] );
42 42
 		if( count( glsr()->reviewTypes ) > 1 ) {
43 43
 			$this->renderField( 'select', [
44 44
 				'class' => 'widefat',
45 45
 				'label' => __( 'Which type of review would you like to display?', 'site-reviews' ),
46 46
 				'name' => 'type',
47 47
 				'options' => ['' => __( 'All Reviews', 'site-reviews' )] + glsr()->reviewTypes,
48
-			]);
48
+			] );
49 49
 		}
50
-		if( !empty( $terms )) {
50
+		if( !empty($terms) ) {
51 51
 			$this->renderField( 'select', [
52 52
 				'class' => 'widefat',
53 53
 				'label' => __( 'Limit reviews to this category', 'site-reviews' ),
54 54
 				'name' => 'category',
55 55
 				'options' => ['' => __( 'All Categories', 'site-reviews' )] + $terms,
56
-			]);
56
+			] );
57 57
 		}
58 58
 		$this->renderField( 'text', [
59 59
 			'class' => 'widefat',
@@ -61,12 +61,12 @@  discard block
 block discarded – undo
61 61
 			'description' => sprintf( __( "Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews' ), '<code>post_id</code>' ),
62 62
 			'label' => __( 'Limit reviews to those assigned to this page/post ID', 'site-reviews' ),
63 63
 			'name' => 'assigned_to',
64
-		]);
64
+		] );
65 65
 		$this->renderField( 'text', [
66 66
 			'class' => 'widefat',
67 67
 			'label' => __( 'Enter any custom CSS classes here', 'site-reviews' ),
68 68
 			'name' => 'class',
69
-		]);
69
+		] );
70 70
 		$this->renderField( 'checkbox', [
71 71
 			'name' => 'hide',
72 72
 			'options' => [
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 				'response' => __( 'Hide the review response?', 'site-reviews' ),
80 80
 				'title' => __( 'Hide the review title?', 'site-reviews' ),
81 81
 			],
82
-		]);
82
+		] );
83 83
 	}
84 84
 
85 85
 	/**
@@ -89,10 +89,10 @@  discard block
 block discarded – undo
89 89
 	 */
90 90
 	public function update( $newInstance, $oldInstance )
91 91
 	{
92
-		if( !is_numeric( $newInstance['count'] )) {
92
+		if( !is_numeric( $newInstance['count'] ) ) {
93 93
 			$newInstance['count'] = 10;
94 94
 		}
95
-		$newInstance['count'] = min( 50, max( 0, intval( $newInstance['count'] )));
95
+		$newInstance['count'] = min( 50, max( 0, intval( $newInstance['count'] ) ) );
96 96
 		return parent::update( $newInstance, $oldInstance );
97 97
 	}
98 98
 
Please login to merge, or discard this patch.
plugin/Modules/Html/Partials/SiteReviewsSummary.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -34,15 +34,15 @@  discard block
 block discarded – undo
34 34
 	public function build( array $args = [] )
35 35
 	{
36 36
 		$this->args = $args;
37
-		$counts = glsr( CountsManager::class )->get([
37
+		$counts = glsr( CountsManager::class )->get( [
38 38
 			'post_ids' => glsr( Helper::class )->convertStringToArray( $args['assigned_to'] ),
39 39
 			'term_ids' => glsr( Helper::class )->convertStringToArray( $args['category'] ),
40 40
 			'type' => $args['type'],
41
-		]);
41
+		] );
42 42
 		$this->ratingCounts = glsr( CountsManager::class )->flatten( $counts, [
43 43
 			'min' => $args['rating'],
44
-		]);
45
-		if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ))return;
44
+		] );
45
+		if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ) )return;
46 46
 		$this->averageRating = glsr( Rating::class )->getAverage( $this->ratingCounts );
47 47
 		$this->generateSchema();
48 48
 		return glsr( Template::class )->build( 'templates/reviews-summary', [
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 				'stars' => $this->buildStars(),
55 55
 				'text' => $this->buildText(),
56 56
 			],
57
-		]);
57
+		] );
58 58
 	}
59 59
 
60 60
 	/**
@@ -62,9 +62,9 @@  discard block
 block discarded – undo
62 62
 	 */
63 63
 	protected function buildPercentage()
64 64
 	{
65
-		if( $this->isHidden( 'bars' ))return;
66
-		$percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts ));
67
-		$bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use( $percentages ) {
65
+		if( $this->isHidden( 'bars' ) )return;
66
+		$percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts ) );
67
+		$bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use($percentages) {
68 68
 			$label = $this->buildPercentageLabel( $this->args['labels'][$level] );
69 69
 			$background = $this->buildPercentageBackground( $percentages[$level] );
70 70
 			$count = apply_filters( 'site-reviews/summary/counts',
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 			$percent = $this->buildPercentageCount( $count );
75 75
 			return $carry.glsr( Builder::class )->div( $label.$background.$percent, [
76 76
 				'class' => 'glsr-bar',
77
-			]);
77
+			] );
78 78
 		});
79 79
 		return $this->wrap( 'percentage', $bars );
80 80
 	}
@@ -85,10 +85,10 @@  discard block
 block discarded – undo
85 85
 	 */
86 86
 	protected function buildPercentageBackground( $percent )
87 87
 	{
88
-		$backgroundPercent = glsr( Builder::class )->span([
88
+		$backgroundPercent = glsr( Builder::class )->span( [
89 89
 			'class' => 'glsr-bar-background-percent',
90 90
 			'style' => 'width:'.$percent,
91
-		]);
91
+		] );
92 92
 		return '<span class="glsr-bar-background">'.$backgroundPercent.'</span>';
93 93
 	}
94 94
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	 */
116 116
 	protected function buildRating()
117 117
 	{
118
-		if( $this->isHidden( 'rating' ))return;
118
+		if( $this->isHidden( 'rating' ) )return;
119 119
 		return $this->wrap( 'rating', '<span>'.$this->averageRating.'</span>' );
120 120
 	}
121 121
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 	 */
125 125
 	protected function buildStars()
126 126
 	{
127
-		if( $this->isHidden( 'stars' ))return;
127
+		if( $this->isHidden( 'stars' ) )return;
128 128
 		$stars = glsr( Partial::class )->build( 'star-rating', ['rating' => $this->averageRating] );
129 129
 		return $this->wrap( 'stars', $stars );
130 130
 	}
@@ -134,9 +134,9 @@  discard block
 block discarded – undo
134 134
 	 */
135 135
 	protected function buildText()
136 136
 	{
137
-		if( $this->isHidden( 'summary' ))return;
138
-		$count = intval( array_sum( $this->ratingCounts ));
139
-		if( empty( $this->args['text'] )) {
137
+		if( $this->isHidden( 'summary' ) )return;
138
+		$count = intval( array_sum( $this->ratingCounts ) );
139
+		if( empty($this->args['text']) ) {
140 140
 			// @todo document this change
141 141
 			 $this->args['text'] = _nx(
142 142
 				'{rating} out of {max} stars (based on {num} review)',
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 			);
148 148
 		}
149 149
 		$summary = str_replace(
150
-			['{rating}','{max}', '{num}'],
150
+			['{rating}', '{max}', '{num}'],
151 151
 			[$this->averageRating, Rating::MAX_RATING, $count],
152 152
 			$this->args['text']
153 153
 		);
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 	 */
160 160
 	protected function generateSchema()
161 161
 	{
162
-		if( !wp_validate_boolean( $this->args['schema'] ))return;
162
+		if( !wp_validate_boolean( $this->args['schema'] ) )return;
163 163
 		glsr( Schema::class )->store(
164 164
 			glsr( Schema::class )->buildSummary( $this->args )
165 165
 		);
@@ -191,6 +191,6 @@  discard block
 block discarded – undo
191 191
 	{
192 192
 		return glsr( Builder::class )->div( $value, [
193 193
 			'class' => 'glsr-summary-'.$key,
194
-		]);
194
+		] );
195 195
 	}
196 196
 }
Please login to merge, or discard this patch.
plugin/Database/CountsManager.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 			$this->getCounts(),
67 67
 			$review->review_type,
68 68
 			$review->rating
69
-		));
69
+		) );
70 70
 	}
71 71
 
72 72
 	/**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 	 */
75 75
 	public function decreasePostCounts( Review $review )
76 76
 	{
77
-		if( empty( $counts = $this->getPostCounts( $review->assigned_to )))return;
77
+		if( empty($counts = $this->getPostCounts( $review->assigned_to )) )return;
78 78
 		$counts = $this->decreaseRating( $counts, $review->review_type, $review->rating );
79 79
 		$this->setPostCounts( $review->assigned_to, $counts );
80 80
 	}
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	public function decreaseTermCounts( Review $review )
86 86
 	{
87 87
 		foreach( $review->term_ids as $termId ) {
88
-			if( empty( $counts = $this->getTermCounts( $termId )))continue;
88
+			if( empty($counts = $this->getTermCounts( $termId )) )continue;
89 89
 			$counts = $this->decreaseRating( $counts, $review->review_type, $review->rating );
90 90
 			$this->setTermCounts( $termId, $counts );
91 91
 		}
@@ -97,17 +97,17 @@  discard block
 block discarded – undo
97 97
 	public function flatten( array $reviewCounts, array $args = [] )
98 98
 	{
99 99
 		$counts = [];
100
-		array_walk_recursive( $reviewCounts, function( $num, $index ) use( &$counts ) {
101
-			$counts[$index] = isset( $counts[$index] )
100
+		array_walk_recursive( $reviewCounts, function( $num, $index ) use(&$counts) {
101
+			$counts[$index] = isset($counts[$index])
102 102
 				? $num + $counts[$index]
103 103
 				: $num;
104 104
 		});
105 105
 		$args = wp_parse_args( $args, [
106 106
 			'max' => Rating::MAX_RATING,
107 107
 			'min' => Rating::MIN_RATING,
108
-		]);
108
+		] );
109 109
 		foreach( $counts as $index => &$num ) {
110
-			if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] ))continue;
110
+			if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] ) )continue;
111 111
 			$num = 0;
112 112
 		}
113 113
 		return $counts;
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 			'post_ids' => [],
123 123
 			'term_ids' => [],
124 124
 			'type' => 'local',
125
-		]);
125
+		] );
126 126
 		$counts = [];
127 127
 		foreach( glsr( Polylang::class )->getPostIds( $args['post_ids'] ) as $postId ) {
128 128
 			$counts[] = $this->getPostCounts( $postId );
@@ -130,12 +130,12 @@  discard block
 block discarded – undo
130 130
 		foreach( $args['term_ids'] as $termId ) {
131 131
 			$counts[] = $this->getTermCounts( $termId );
132 132
 		}
133
-		if( empty( $counts )) {
133
+		if( empty($counts) ) {
134 134
 			$counts[] = $this->getCounts();
135 135
 		}
136 136
 		return in_array( $args['type'], ['', 'all'] )
137 137
 			? $this->normalize( [$this->flatten( $counts )] )
138
-			: $this->normalize( array_column( $counts, $args['type'] ));
138
+			: $this->normalize( array_column( $counts, $args['type'] ) );
139 139
 	}
140 140
 
141 141
 	/**
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 	 */
153 153
 	public function getPostCounts( $postId )
154 154
 	{
155
-		return array_filter( (array)get_post_meta( $postId, static::META_COUNT, true ));
155
+		return array_filter( (array)get_post_meta( $postId, static::META_COUNT, true ) );
156 156
 	}
157 157
 
158 158
 	/**
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 	 */
162 162
 	public function getTermCounts( $termId )
163 163
 	{
164
-		return array_filter( (array)get_term_meta( $termId, static::META_COUNT, true ));
164
+		return array_filter( (array)get_term_meta( $termId, static::META_COUNT, true ) );
165 165
 	}
166 166
 
167 167
 	/**
@@ -179,14 +179,14 @@  discard block
 block discarded – undo
179 179
 	 */
180 180
 	public function increaseCounts( Review $review )
181 181
 	{
182
-		if( empty( $counts = $this->getCounts() )) {
182
+		if( empty($counts = $this->getCounts()) ) {
183 183
 			$counts = $this->buildCounts();
184 184
 		}
185 185
 		$this->setCounts( $this->increaseRating(
186 186
 			$counts,
187 187
 			$review->review_type,
188 188
 			$review->rating
189
-		));
189
+		) );
190 190
 	}
191 191
 
192 192
 	/**
@@ -194,9 +194,9 @@  discard block
 block discarded – undo
194 194
 	 */
195 195
 	public function increasePostCounts( Review $review )
196 196
 	{
197
-		if( !( get_post( $review->assigned_to ) instanceof WP_Post ))return;
197
+		if( !(get_post( $review->assigned_to ) instanceof WP_Post) )return;
198 198
 		$counts = $this->getPostCounts( $review->assigned_to );
199
-		$counts = empty( $counts )
199
+		$counts = empty($counts)
200 200
 			? $this->buildPostCounts( $review->assigned_to )
201 201
 			: $this->increaseRating( $counts, $review->review_type, $review->rating );
202 202
 		$this->setPostCounts( $review->assigned_to, $counts );
@@ -207,10 +207,10 @@  discard block
 block discarded – undo
207 207
 	 */
208 208
 	public function increaseTermCounts( Review $review )
209 209
 	{
210
-		$termIds = glsr( ReviewManager::class )->normalizeTerms( implode( ',', $review->term_ids ));
210
+		$termIds = glsr( ReviewManager::class )->normalizeTerms( implode( ',', $review->term_ids ) );
211 211
 		foreach( $termIds as $termId ) {
212 212
 			$counts = $this->getTermCounts( $termId );
213
-			$counts = empty( $counts )
213
+			$counts = empty($counts)
214 214
 				? $this->buildTermCounts( $termId )
215 215
 				: $this->increaseRating( $counts, $review->review_type, $review->rating );
216 216
 			$this->setTermCounts( $termId, $counts );
@@ -233,8 +233,8 @@  discard block
 block discarded – undo
233 233
 	{
234 234
 		$ratingCounts = $this->flatten( $reviewCounts );
235 235
 		update_post_meta( $postId, static::META_COUNT, $reviewCounts );
236
-		update_post_meta( $postId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts ));
237
-		update_post_meta( $postId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts ));
236
+		update_post_meta( $postId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts ) );
237
+		update_post_meta( $postId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts ) );
238 238
 	}
239 239
 
240 240
 	/**
@@ -243,11 +243,11 @@  discard block
 block discarded – undo
243 243
 	 */
244 244
 	public function setTermCounts( $termId, array $reviewCounts )
245 245
 	{
246
-		if( !term_exists( $termId ))return;
246
+		if( !term_exists( $termId ) )return;
247 247
 		$ratingCounts = $this->flatten( $reviewCounts );
248 248
 		update_term_meta( $termId, static::META_COUNT, $reviewCounts );
249
-		update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts ));
250
-		update_term_meta( $termId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts ));
249
+		update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts ) );
250
+		update_term_meta( $termId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts ) );
251 251
 	}
252 252
 
253 253
 	/**
@@ -258,10 +258,10 @@  discard block
 block discarded – undo
258 258
 	{
259 259
 		$counts = [];
260 260
 		$lastPostId = 0;
261
-		while( $reviews = $this->queryReviews( $args, $lastPostId, $limit )) {
262
-			$types = array_keys( array_flip( array_column( $reviews, 'type' )));
261
+		while( $reviews = $this->queryReviews( $args, $lastPostId, $limit ) ) {
262
+			$types = array_keys( array_flip( array_column( $reviews, 'type' ) ) );
263 263
 			foreach( $types as $type ) {
264
-				if( isset( $counts[$type] ))continue;
264
+				if( isset($counts[$type]) )continue;
265 265
 				$counts[$type] = array_fill_keys( range( 0, Rating::MAX_RATING ), 0 );
266 266
 			}
267 267
 			foreach( $reviews as $review ) {
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 	 */
280 280
 	protected function decreaseRating( array $reviewCounts, $type, $rating )
281 281
 	{
282
-		if( isset( $reviewCounts[$type][$rating] )) {
282
+		if( isset($reviewCounts[$type][$rating]) ) {
283 283
 			$reviewCounts[$type][$rating] = max( 0, $reviewCounts[$type][$rating] - 1 );
284 284
 		}
285 285
 		return $reviewCounts;
@@ -292,10 +292,10 @@  discard block
 block discarded – undo
292 292
 	 */
293 293
 	protected function increaseRating( array $reviewCounts, $type, $rating )
294 294
 	{
295
-		if( !array_key_exists( $type, glsr()->reviewTypes )) {
295
+		if( !array_key_exists( $type, glsr()->reviewTypes ) ) {
296 296
 			return $reviewCounts;
297 297
 		}
298
-		if( !array_key_exists( $type, $reviewCounts )) {
298
+		if( !array_key_exists( $type, $reviewCounts ) ) {
299 299
 			$reviewCounts[$type] = [];
300 300
 		}
301 301
 		$reviewCounts = $this->normalize( $reviewCounts );
@@ -308,12 +308,12 @@  discard block
 block discarded – undo
308 308
 	 */
309 309
 	protected function normalize( array $reviewCounts )
310 310
 	{
311
-		if( empty( $reviewCounts )) {
311
+		if( empty($reviewCounts) ) {
312 312
 			$reviewCounts = [[]];
313 313
 		}
314 314
 		foreach( $reviewCounts as &$counts ) {
315 315
 			foreach( range( 0, Rating::MAX_RATING ) as $index ) {
316
-				if( isset( $counts[$index] ))continue;
316
+				if( isset($counts[$index]) )continue;
317 317
 				$counts[$index] = 0;
318 318
 			}
319 319
 			ksort( $counts );
@@ -328,14 +328,14 @@  discard block
 block discarded – undo
328 328
 	 */
329 329
 	protected function queryReviews( array $args = [], $lastPostId, $limit )
330 330
 	{
331
-		$args = wp_parse_args( $args, array_fill_keys( ['post_id', 'term_id'], '' ));
332
-		if( empty( array_filter( $args ))) {
331
+		$args = wp_parse_args( $args, array_fill_keys( ['post_id', 'term_id'], '' ) );
332
+		if( empty(array_filter( $args )) ) {
333 333
 			return glsr( SqlQueries::class )->getReviewCounts( $lastPostId, $limit );
334 334
 		}
335
-		if( !empty( $args['post_id'] )) {
335
+		if( !empty($args['post_id']) ) {
336 336
 			return glsr( SqlQueries::class )->getReviewPostCounts( $args['post_id'], $lastPostId, $limit );
337 337
 		}
338
-		if( !empty( $args['term_id'] )) {
338
+		if( !empty($args['term_id']) ) {
339 339
 			return glsr( SqlQueries::class )->getReviewTermCounts( $args['term_id'], $lastPostId, $limit );
340 340
 		}
341 341
 	}
Please login to merge, or discard this patch.
plugin/Modules/Html/Partials/SiteReviews.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 				'navigation' => $navigation,
58 58
 				'reviews' => $this->buildReviews(),
59 59
 			],
60
-		]);
60
+		] );
61 61
 	}
62 62
 
63 63
 	/**
@@ -68,9 +68,9 @@  discard block
 block discarded – undo
68 68
 		$reviews = '';
69 69
 		foreach( $this->reviews->results as $index => $result ) {
70 70
 			$this->current = $index;
71
-			$reviews.= glsr( Template::class )->build( 'templates/review', [
71
+			$reviews .= glsr( Template::class )->build( 'templates/review', [
72 72
 				'context' => $this->buildReview( $result )->values,
73
-			]);
73
+			] );
74 74
 		}
75 75
 		return $reviews;
76 76
 	}
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 		$renderedFields = [];
86 86
 		foreach( (array)$review as $key => $value ) {
87 87
 			$method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' );
88
-			if( !method_exists( $this, $method ))continue;
88
+			if( !method_exists( $this, $method ) )continue;
89 89
 			$renderedFields[$key] = $this->$method( $key, $value );
90 90
 		}
91 91
 		$this->wrap( $renderedFields, $review );
@@ -100,12 +100,12 @@  discard block
 block discarded – undo
100 100
 	 */
101 101
 	protected function buildOptionAssignedTo( $key, $value )
102 102
 	{
103
-		if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return;
103
+		if( $this->isHidden( $key, 'settings.reviews.assigned_links' ) )return;
104 104
 		$post = glsr( Polylang::class )->getPost( $value );
105
-		if( !( $post instanceof WP_Post ))return;
105
+		if( !($post instanceof WP_Post) )return;
106 106
 		$permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [
107 107
 			'href' => get_the_permalink( $post->ID ),
108
-		]);
108
+		] );
109 109
 		$assignedTo = sprintf( __( 'Review of %s', 'site-reviews' ), $permalink );
110 110
 		return '<span>'.$assignedTo.'</span>';
111 111
 	}
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 	 */
118 118
 	protected function buildOptionAuthor( $key, $value )
119 119
 	{
120
-		if( $this->isHidden( $key ))return;
120
+		if( $this->isHidden( $key ) )return;
121 121
 		return '<span>'.$value.'</span>';
122 122
 	}
123 123
 
@@ -128,14 +128,14 @@  discard block
 block discarded – undo
128 128
 	 */
129 129
 	protected function buildOptionAvatar( $key, $value )
130 130
 	{
131
-		if( $this->isHidden( $key, 'settings.reviews.avatars' ))return;
131
+		if( $this->isHidden( $key, 'settings.reviews.avatars' ) )return;
132 132
 		$size = $this->getOption( 'settings.reviews.avatars_size', 40 );
133
-		return glsr( Builder::class )->img([
133
+		return glsr( Builder::class )->img( [
134 134
 			'height' => $size,
135 135
 			'src' => $this->generateAvatar( $value ),
136 136
 			'style' => sprintf( 'width:%1$spx; height:%1$spx;', $size ),
137 137
 			'width' => $size,
138
-		]);
138
+		] );
139 139
 	}
140 140
 
141 141
 	/**
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 	protected function buildOptionContent( $key, $value )
147 147
 	{
148 148
 		$text = $this->normalizeText( $value );
149
-		if( $this->isHiddenOrEmpty( $key, $text ))return;
149
+		if( $this->isHiddenOrEmpty( $key, $text ) )return;
150 150
 		return '<p>'.$text.'</p>';
151 151
 	}
152 152
 
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 	 */
158 158
 	protected function buildOptionDate( $key, $value )
159 159
 	{
160
-		if( $this->isHidden( $key ))return;
160
+		if( $this->isHidden( $key ) )return;
161 161
 		$dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' );
162 162
 		if( $dateFormat == 'relative' ) {
163 163
 			$date = glsr( Date::class )->relative( $value );
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 			$format = $dateFormat == 'custom'
167 167
 				? $this->getOption( 'settings.reviews.date.custom', 'M j, Y' )
168 168
 				: (string)get_option( 'date_format' );
169
-			$date = date_i18n( $format, strtotime( $value ));
169
+			$date = date_i18n( $format, strtotime( $value ) );
170 170
 		}
171 171
 		return '<span>'.$date.'</span>';
172 172
 	}
@@ -178,10 +178,10 @@  discard block
 block discarded – undo
178 178
 	 */
179 179
 	protected function buildOptionRating( $key, $value )
180 180
 	{
181
-		if( $this->isHiddenOrEmpty( $key, $value ))return;
181
+		if( $this->isHiddenOrEmpty( $key, $value ) )return;
182 182
 		return glsr( Partial::class )->build( 'star-rating', [
183 183
 			'rating' => $value,
184
-		]);
184
+		] );
185 185
 	}
186 186
 
187 187
 	/**
@@ -191,8 +191,8 @@  discard block
 block discarded – undo
191 191
 	 */
192 192
 	protected function buildOptionResponse( $key, $value )
193 193
 	{
194
-		if( $this->isHiddenOrEmpty( $key, $value ))return;
195
-		$title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ));
194
+		if( $this->isHiddenOrEmpty( $key, $value ) )return;
195
+		$title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ) );
196 196
 		$text = $this->normalizeText( $value );
197 197
 		$text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>';
198 198
 		$response = glsr( Builder::class )->div( $text, ['class' => 'glsr-review-response-inner'] );
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
 	 */
208 208
 	protected function buildOptionTitle( $key, $value )
209 209
 	{
210
-		if( $this->isHidden( $key ))return;
211
-		if( empty( $value )) {
210
+		if( $this->isHidden( $key ) )return;
211
+		if( empty($value) ) {
212 212
 			$value = __( 'No Title', 'site-reviews' );
213 213
 		}
214 214
 		return '<h3>'.$value.'</h3>';
@@ -225,10 +225,10 @@  discard block
 block discarded – undo
225 225
 			return $avatarUrl;
226 226
 		}
227 227
 		$authorIdOrEmail = get_the_author_meta( 'ID', $review->user_id );
228
-		if( empty( $authorIdOrEmail )) {
228
+		if( empty($authorIdOrEmail) ) {
229 229
 			$authorIdOrEmail = $review->email;
230 230
 		}
231
-		if( $newAvatar = get_avatar_url( $authorIdOrEmail )) {
231
+		if( $newAvatar = get_avatar_url( $authorIdOrEmail ) ) {
232 232
 			return $newAvatar;
233 233
 		}
234 234
 		return $avatarUrl;
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 	 */
240 240
 	protected function generateSchema()
241 241
 	{
242
-		if( !wp_validate_boolean( $this->args['schema'] ))return;
242
+		if( !wp_validate_boolean( $this->args['schema'] ) )return;
243 243
 		glsr( Schema::class )->store(
244 244
 			glsr( Schema::class )->build( $this->args )
245 245
 		);
@@ -262,18 +262,18 @@  discard block
 block discarded – undo
262 262
 	 */
263 263
 	protected function getExcerpt( $text )
264 264
 	{
265
-		$limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 ));
265
+		$limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 ) );
266 266
 		$split = extension_loaded( 'intl' )
267 267
 			? $this->getExcerptIntlSplit( $text, $limit )
268 268
 			: $this->getExcerptSplit( $text, $limit );
269 269
 		$hiddenText = substr( $text, $split );
270
-		if( !empty( $hiddenText )) {
270
+		if( !empty($hiddenText) ) {
271 271
 			$showMore = glsr( Builder::class )->span( $hiddenText, [
272 272
 				'class' => 'glsr-hidden glsr-hidden-text',
273 273
 				'data-show-less' => __( 'Show less', 'site-reviews' ),
274 274
 				'data-show-more' => __( 'Show more', 'site-reviews' ),
275
-			]);
276
-			$text = ltrim( substr( $text, 0, $split )).$showMore;
275
+			] );
276
+			$text = ltrim( substr( $text, 0, $split ) ).$showMore;
277 277
 		}
278 278
 		return nl2br( $text );
279 279
 	}
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
 		$words = IntlRuleBasedBreakIterator::createWordInstance( '' );
289 289
 		$words->setText( $text );
290 290
 		$count = 0;
291
-		foreach( $words as $offset ){
291
+		foreach( $words as $offset ) {
292 292
 			if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue;
293 293
 			$count++;
294 294
 			if( $count != $limit )continue;
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
 	protected function getExcerptSplit( $text, $limit )
306 306
 	{
307 307
 		if( str_word_count( $text, 0 ) > $limit ) {
308
-			$words = array_keys( str_word_count( $text, 2 ));
308
+			$words = array_keys( str_word_count( $text, 2 ) );
309 309
 			return $words[$limit];
310 310
 		}
311 311
 		return strlen( $text );
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 	 */
319 319
 	protected function getOption( $path, $fallback = '' )
320 320
 	{
321
-		if( array_key_exists( $path, $this->options )) {
321
+		if( array_key_exists( $path, $this->options ) ) {
322 322
 			return $this->options[$path];
323 323
 		}
324 324
 		return $fallback;
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
 	 */
332 332
 	protected function isHidden( $key, $path = '' )
333 333
 	{
334
-		$isOptionEnabled = !empty( $path )
334
+		$isOptionEnabled = !empty($path)
335 335
 			? $this->isOptionEnabled( $path )
336 336
 			: true;
337 337
 		return in_array( $key, $this->args['hide'] ) || !$isOptionEnabled;
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 	 */
345 345
 	protected function isHiddenOrEmpty( $key, $value )
346 346
 	{
347
-		return $this->isHidden( $key ) || empty( $value );
347
+		return $this->isHidden( $key ) || empty($value);
348 348
 	}
349 349
 
350 350
 	/**
@@ -363,10 +363,10 @@  discard block
 block discarded – undo
363 363
 	protected function normalizeText( $text )
364 364
 	{
365 365
 		$text = wp_kses( $text, wp_kses_allowed_html() );
366
-		$text = convert_smilies( strip_shortcodes( $text ));
366
+		$text = convert_smilies( strip_shortcodes( $text ) );
367 367
 		$text = str_replace( ']]>', ']]&gt;', $text );
368 368
 		$text = preg_replace( '/(\R){2,}/', '$1', $text );
369
-		if( $this->isOptionEnabled( 'settings.reviews.excerpts' )) {
369
+		if( $this->isOptionEnabled( 'settings.reviews.excerpts' ) ) {
370 370
 			$text = $this->getExcerpt( $text );
371 371
 		}
372 372
 		return wptexturize( $text );
@@ -378,12 +378,12 @@  discard block
 block discarded – undo
378 378
 	protected function wrap( array &$renderedFields, Review $review )
379 379
 	{
380 380
 		$renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review );
381
-		array_walk( $renderedFields, function( &$value, $key ) use( $review ) {
381
+		array_walk( $renderedFields, function( &$value, $key ) use($review) {
382 382
 			$value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review );
383
-			if( empty( $value ))return;
383
+			if( empty($value) )return;
384 384
 			$value = glsr( Builder::class )->div( $value, [
385 385
 				'class' => 'glsr-review-'.$key,
386
-			]);
386
+			] );
387 387
 		});
388 388
 	}
389 389
 }
Please login to merge, or discard this patch.
plugin/Application.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	{
86 86
 		$constant = 'static::'.$property;
87 87
 		return defined( $constant )
88
-			? apply_filters( 'site-reviews/const/'.$property, constant( $constant ))
88
+			? apply_filters( 'site-reviews/const/'.$property, constant( $constant ) )
89 89
 			: '';
90 90
 	}
91 91
 
@@ -104,14 +104,14 @@  discard block
 block discarded – undo
104 104
 	public function file( $view )
105 105
 	{
106 106
 		$file = '';
107
-		$view.= '.php';
108
-		if( glsr( Helper::class )->startsWith( 'templates/', $view )) {
109
-			$file = $this->themePath( glsr( Helper::class )->removePrefix( 'templates/', $view ));
110
-			if( !file_exists( $file )) {
107
+		$view .= '.php';
108
+		if( glsr( Helper::class )->startsWith( 'templates/', $view ) ) {
109
+			$file = $this->themePath( glsr( Helper::class )->removePrefix( 'templates/', $view ) );
110
+			if( !file_exists( $file ) ) {
111 111
 				$file = $this->path( $view );
112 112
 			}
113 113
 		}
114
-		if( !file_exists( $file )) {
114
+		if( !file_exists( $file ) ) {
115 115
 			$file = $this->path( 'views/'.$view );
116 116
 		}
117 117
 		return $file;
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 	 */
123 123
 	public function getDefaults()
124 124
 	{
125
-		if( empty( $this->defaults )) {
125
+		if( empty($this->defaults) ) {
126 126
 			$this->defaults = $this->make( DefaultsManager::class )->get();
127 127
 			$this->upgrade();
128 128
 		}
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 	public function hasPermission()
136 136
 	{
137 137
 		$isAdmin = $this->isAdmin();
138
-		return !$isAdmin || ( $isAdmin && current_user_can( $this->constant( 'CAPABILITY' )));
138
+		return !$isAdmin || ($isAdmin && current_user_can( $this->constant( 'CAPABILITY' ) ));
139 139
 	}
140 140
 
141 141
 	/**
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 		$types = apply_filters( 'site-reviews/addon/types', [] );
192 192
 		$this->reviewTypes = wp_parse_args( $types, [
193 193
 			'local' => __( 'Local', 'site-reviews' ),
194
-		]);
194
+		] );
195 195
 	}
196 196
 
197 197
 	/**
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 	{
203 203
 		$view = apply_filters( 'site-reviews/render/view', $view, $data );
204 204
 		$file = apply_filters( 'site-reviews/views/file', $this->file( $view ), $view, $data );
205
-		if( !file_exists( $file )) {
205
+		if( !file_exists( $file ) ) {
206 206
 			glsr_log()->error( 'File not found: '.$file );
207 207
 			return;
208 208
 		}
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 	 */
217 217
 	public function scheduleCronJob()
218 218
 	{
219
-		if( wp_next_scheduled( static::CRON_EVENT ))return;
219
+		if( wp_next_scheduled( static::CRON_EVENT ) )return;
220 220
 		wp_schedule_event( time(), 'twicedaily', static::CRON_EVENT );
221 221
 	}
222 222
 
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 	 */
235 235
 	public function unscheduleCronJob()
236 236
 	{
237
-		wp_unschedule_event( intval( wp_next_scheduled( static::CRON_EVENT )), static::CRON_EVENT );
237
+		wp_unschedule_event( intval( wp_next_scheduled( static::CRON_EVENT ) ), static::CRON_EVENT );
238 238
 	}
239 239
 
240 240
 	/**
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
 	 */
267 267
 	public function url( $path = '' )
268 268
 	{
269
-		$url = esc_url( plugin_dir_url( $this->file ).ltrim( trim( $path ), '/' ));
269
+		$url = esc_url( plugin_dir_url( $this->file ).ltrim( trim( $path ), '/' ) );
270 270
 		return apply_filters( 'site-reviews/url', $url, $path );
271 271
 	}
272 272
 }
Please login to merge, or discard this patch.
plugin/Controllers/Controller.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 	 */
16 16
 	public function download( $filename, $content )
17 17
 	{
18
-		if( !current_user_can( glsr()->constant( 'CAPABILITY' )))return;
18
+		if( !current_user_can( glsr()->constant( 'CAPABILITY' ) ) )return;
19 19
 		nocache_headers();
20 20
 		header( 'Content-Type: text/plain' );
21 21
 		header( 'Content-Disposition: attachment; filename="'.$filename.'"' );
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
 	 */
31 31
 	public function execute( $command )
32 32
 	{
33
-		$handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command ));
34
-		if( !class_exists( $handlerClass )) {
33
+		$handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command ) );
34
+		if( !class_exists( $handlerClass ) ) {
35 35
 			throw new InvalidArgumentException( 'Handler '.$handlerClass.' not found.' );
36 36
 		}
37 37
 		try {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 		}
40 40
 		catch( Exception $e ) {
41 41
 			status_header( 400 );
42
-			glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() ));
42
+			glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() ) );
43 43
 			glsr_log()->error( $e->getMessage() );
44 44
 		}
45 45
 	}
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 */
50 50
 	protected function getPostId()
51 51
 	{
52
-		return intval( filter_input( INPUT_GET, 'post' ));
52
+		return intval( filter_input( INPUT_GET, 'post' ) );
53 53
 	}
54 54
 
55 55
 	/**
Please login to merge, or discard this patch.