Passed
Push — develop ( 72cbea...47a228 )
by Paul
02:45
created
src/AliasLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	 */
41 41
 	public static function getInstance( array $aliases = [] )
42 42
 	{
43
-		if( is_null( static::$instance )) {
43
+		if( is_null( static::$instance ) ) {
44 44
 			return static::$instance = new static( $aliases );
45 45
 		}
46 46
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 	 */
61 61
 	public function load( $alias )
62 62
 	{
63
-		if( isset( $this->aliases[$alias] )) {
63
+		if( isset( $this->aliases[$alias] ) ) {
64 64
 			return class_alias( $this->aliases[$alias], $alias );
65 65
 		}
66 66
 	}
Please login to merge, or discard this patch.
src/Facade.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,11 +102,11 @@
 block discarded – undo
102 102
 	 */
103 103
 	protected static function resolveFacadeInstance( $name )
104 104
 	{
105
-		if( is_object( $name )) {
105
+		if( is_object( $name ) ) {
106 106
 			return $name;
107 107
 		}
108 108
 
109
-		if( isset( static::$resolvedInstance[$name] )) {
109
+		if( isset( static::$resolvedInstance[$name] ) ) {
110 110
 			return static::$resolvedInstance[$name];
111 111
 		}
112 112
 
Please login to merge, or discard this patch.
src/Services/Email.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 		$this->to          = $email['to'];
56 56
 
57 57
 		add_action( 'phpmailer_init', function( PHPMailer $phpmailer ) {
58
-			if( $phpmailer->ContentType === 'text/plain' || !empty( $phpmailer->AltBody ))return;
58
+			if( $phpmailer->ContentType === 'text/plain' || !empty( $phpmailer->AltBody ) )return;
59 59
 			$phpmailer->AltBody = $this->buildPlainTextMessage( $phpmailer->Body );
60 60
 		});
61 61
 
@@ -106,11 +106,11 @@  discard block
 block discarded – undo
106 106
 			'reply-to',
107 107
 		];
108 108
 
109
-		$headers = array_intersect_key( $email, array_flip( $allowed ));
109
+		$headers = array_intersect_key( $email, array_flip( $allowed ) );
110 110
 		$headers = array_filter( $headers );
111 111
 
112 112
 		foreach( $headers as $key => $value ) {
113
-			unset( $headers[ $key ] );
113
+			unset( $headers[$key] );
114 114
 			$headers[] = sprintf( '%s: %s', $key, $value );
115 115
 		}
116 116
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 			? $this->renderTemplate( $email['template'], $email['template-tags'] )
131 131
 			: $email['message'];
132 132
 
133
-		$message = $this->filterHtml( $email['before'] . $message . $email['after'] );
133
+		$message = $this->filterHtml( $email['before'].$message.$email['after'] );
134 134
 		$message = str_replace( '{message}', $message, $body );
135 135
 
136 136
 		return apply_filters( 'castor/email/message', $message, 'html', $this );
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
 	 */
178 178
 	protected function normalize( $email )
179 179
 	{
180
-		$defaults = array_fill_keys([
180
+		$defaults = array_fill_keys( [
181 181
 			'after', 'attachments', 'bcc', 'before', 'cc', 'from', 'message', 'reply-to', 'subject',
182 182
 			'template', 'template-tags', 'to',
183 183
 		], '' );
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 		foreach( ['attachments', 'template-tags'] as $key ) {
189 189
 			$email[$key] = array_filter( (array) $email[$key] );
190 190
 		}
191
-		if( empty( $email['reply-to'] )) {
191
+		if( empty( $email['reply-to'] ) ) {
192 192
 			$email['reply-to'] = $email['from'];
193 193
 		}
194 194
 
@@ -204,12 +204,12 @@  discard block
 block discarded – undo
204 204
 	 */
205 205
 	protected function renderTemplate( $templatePath, array $args = [] )
206 206
 	{
207
-		$file = $this->template->get( sprintf( 'castor/%s', $templatePath ));
207
+		$file = $this->template->get( sprintf( 'castor/%s', $templatePath ) );
208 208
 
209
-		if( !file_exists( $file )) {
209
+		if( !file_exists( $file ) ) {
210 210
 			$file = sprintf( '%s/templates/%s.php', dirname( __DIR__ ), $templatePath );
211 211
 		}
212
-		if( !file_exists( $file ))return;
212
+		if( !file_exists( $file ) )return;
213 213
 
214 214
 		ob_start();
215 215
 		include $file;
Please login to merge, or discard this patch.
src/Services/Normalizer.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 		foreach( $attributes as $key => $value ) {
102 102
 			// if data attributes, use single quotes in case of json encoded values
103 103
 			$quotes = false !== stripos( $key, 'data-' ) ? "'" : '"';
104
-			if( is_array( $value )) {
104
+			if( is_array( $value ) ) {
105 105
 				$value = json_encode( $value );
106 106
 				$quotes = "'";
107 107
 			}
@@ -144,29 +144,29 @@  discard block
 block discarded – undo
144 144
 	 */
145 145
 	protected function filterAttributes( array $attributeKeys )
146 146
 	{
147
-		$filtered = array_intersect_key( $this->args, array_flip( $attributeKeys ));
147
+		$filtered = array_intersect_key( $this->args, array_flip( $attributeKeys ) );
148 148
 
149 149
 		// normalize truthy boolean attributes
150 150
 		foreach( $filtered as $key => $value ) {
151
-			if( !in_array( $key, self::BOOLEAN_ATTRIBUTES ))continue;
151
+			if( !in_array( $key, self::BOOLEAN_ATTRIBUTES ) )continue;
152 152
 
153 153
 			if( $value !== false ) {
154
-				$filtered[ $key ] = '';
154
+				$filtered[$key] = '';
155 155
 				continue;
156 156
 			}
157 157
 
158
-			unset( $filtered[ $key ] );
158
+			unset( $filtered[$key] );
159 159
 		}
160 160
 
161 161
 		$filteredKeys = array_filter( array_keys( $filtered ), function( $key ) use ( $filtered ) {
162 162
 			return !(
163
-				empty( $filtered[ $key ] )
164
-				&& !is_numeric( $filtered[ $key ] )
163
+				empty( $filtered[$key] )
164
+				&& !is_numeric( $filtered[$key] )
165 165
 				&& !in_array( $key, self::BOOLEAN_ATTRIBUTES )
166 166
 			);
167 167
 		});
168 168
 
169
-		return array_intersect_key( $filtered, array_flip( $filteredKeys ));
169
+		return array_intersect_key( $filtered, array_flip( $filteredKeys ) );
170 170
 	}
171 171
 
172 172
 	/**
@@ -183,20 +183,20 @@  discard block
 block discarded – undo
183 183
 			foreach( $this->args as $key => $value ) {
184 184
 
185 185
 				$length = strlen( $wildcard );
186
-				$result = substr( $key, 0, $length) === $wildcard;
186
+				$result = substr( $key, 0, $length ) === $wildcard;
187 187
 
188 188
 				if( $result ) {
189 189
 					// only allow data attributes to have an empty value
190
-					if( $wildcard != 'data-' && empty( $value ))continue;
190
+					if( $wildcard != 'data-' && empty( $value ) )continue;
191 191
 
192
-					if( is_array( $value )) {
192
+					if( is_array( $value ) ) {
193 193
 
194 194
 						if( $wildcard != 'data-' )continue;
195 195
 
196 196
 						$value = json_encode( $value );
197 197
 					}
198 198
 
199
-					$wildcards[ $key ] = $value;
199
+					$wildcards[$key] = $value;
200 200
 				}
201 201
 			}
202 202
 		}
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 	 */
210 210
 	protected function filterInputType()
211 211
 	{
212
-		if( !isset( $this->args['type'] ) || !in_array( $this->args['type'], self::INPUT_TYPES )) {
212
+		if( !isset( $this->args['type'] ) || !in_array( $this->args['type'], self::INPUT_TYPES ) ) {
213 213
 			$this->args['type'] = 'text';
214 214
 		}
215 215
 	}
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 	 */
220 220
 	protected function parseAttributes( array $attributes, array $args = [] )
221 221
 	{
222
-		if( !empty( $args )) {
222
+		if( !empty( $args ) ) {
223 223
 			$this->args = array_change_key_case( $args );
224 224
 		}
225 225
 
Please login to merge, or discard this patch.
src/Video.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
 	public function render()
43 43
 	{
44
-		if( !isset( $this->video->html ))return;
44
+		if( !isset( $this->video->html ) )return;
45 45
 		return sprintf(
46 46
 			'<div class="video embed">%s%s</div>',
47 47
 			$this->renderScreenshot(),
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
 	public function renderPlayButton()
53 53
 	{
54 54
 		return sprintf(
55
-			'<div class="video-play">' .
56
-				'<div class="video-play-pulse pulse1"></div>' .
57
-				'<div class="video-play-pulse pulse2"></div>' .
58
-				'<div class="video-play-pulse pulse3"></div>' .
59
-				'<a href="%s" class="video-play-btn">%s</a>' .
55
+			'<div class="video-play">'.
56
+				'<div class="video-play-pulse pulse1"></div>'.
57
+				'<div class="video-play-pulse pulse2"></div>'.
58
+				'<div class="video-play-pulse pulse3"></div>'.
59
+				'<a href="%s" class="video-play-btn">%s</a>'.
60 60
 			'</div>',
61 61
 			$this->args['url'],
62 62
 			$this->theme->svg( 'play.svg' )
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	public function renderScreenshot()
67 67
 	{
68 68
 		if( $this->args['image']
69
-			&& in_array( strtolower( $this->video->provider_name ), $this->supported )) {
69
+			&& in_array( strtolower( $this->video->provider_name ), $this->supported ) ) {
70 70
 			return sprintf( '%s<div class="video-poster" style="background-image: url(%s)">%s</div>',
71 71
 				$this->renderSpinner(),
72 72
 				$this->args['image'],
@@ -78,10 +78,10 @@  discard block
 block discarded – undo
78 78
 	public function renderSpinner()
79 79
 	{
80 80
 		return sprintf(
81
-			'<div class="video-spinner">' .
82
-				'<div class="spinner"><div class="spinner-dots">%s</div></div>' .
81
+			'<div class="video-spinner">'.
82
+				'<div class="spinner"><div class="spinner-dots">%s</div></div>'.
83 83
 			'</div>',
84
-			implode( '', array_fill( 0, 8, '<div class="spinner-dot"></div>' ))
84
+			implode( '', array_fill( 0, 8, '<div class="spinner-dot"></div>' ) )
85 85
 		);
86 86
 	}
87 87
 
@@ -102,11 +102,11 @@  discard block
 block discarded – undo
102 102
 
103 103
 	protected function normalize( $args )
104 104
 	{
105
-		if( is_string( $args )) {
105
+		if( is_string( $args ) ) {
106 106
 			$args = ['url' => $args];
107 107
 		}
108 108
 
109
-		$this->args = shortcode_atts([
109
+		$this->args = shortcode_atts( [
110 110
 			'image'  => '', // string || int
111 111
 			'player' => '', // string || array
112 112
 			'url'    => '', // string
@@ -114,8 +114,8 @@  discard block
 block discarded – undo
114 114
 
115 115
 		foreach( $this->args as $key => $value ) {
116 116
 			$method = $this->utility->buildMethodName( $key, 'set' );
117
-			if( !method_exists( $this, $method ))continue;
118
-			call_user_func([ $this, $method ], $value );
117
+			if( !method_exists( $this, $method ) )continue;
118
+			call_user_func( [$this, $method], $value );
119 119
 		}
120 120
 		return $this->args;
121 121
 	}
Please login to merge, or discard this patch.
src/Gallery.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	{
35 35
 		$this->normalizeArgs( $args );
36 36
 
37
-		$this->gallery = new WP_Query([
37
+		$this->gallery = new WP_Query( [
38 38
 			'orderby'        => 'post__in',
39 39
 			'paged'          => $this->getPaged(),
40 40
 			'post__in'       => $this->args['media'],
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 			'post_type'      => 'attachment',
43 43
 			'post_status'    => 'inherit',
44 44
 			'posts_per_page' => $this->args['images_per_page'],
45
-		]);
45
+		] );
46 46
 
47 47
 		return $this;
48 48
 	}
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
 	 */
53 53
 	public function render()
54 54
 	{
55
-		if( empty( $this->args['media'] ))return;
55
+		if( empty( $this->args['media'] ) )return;
56 56
 		$images = array_reduce( $this->gallery->posts, function( $images, $attachment ) {
57
-			return $images . $this->renderImage( $attachment );
57
+			return $images.$this->renderImage( $attachment );
58 58
 		});
59 59
 		return sprintf( '<div class="gallery-images" itemscope itemtype="http://schema.org/ImageGallery">%s</div>%s',
60 60
 			$images,
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
 
72 72
 		if( !$image )return;
73 73
 		return sprintf(
74
-			'<figure class="gallery-image" data-w="%s" data-h="%s" data-ps=\'%s\' itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">' .
75
-				'%s%s' .
74
+			'<figure class="gallery-image" data-w="%s" data-h="%s" data-ps=\'%s\' itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">'.
75
+				'%s%s'.
76 76
 			'</figure>',
77 77
 			$image->thumbnail['width'],
78 78
 			$image->thumbnail['height'],
@@ -88,14 +88,14 @@  discard block
 block discarded – undo
88 88
 	public function renderPagination()
89 89
 	{
90 90
 		if( !$this->args['pagination'] )return;
91
-		return paginate_links([
92
-			'before_page_number' => '<span class="screen-reader-text">' . __( 'Page', 'castor' ) . ' </span>',
91
+		return paginate_links( [
92
+			'before_page_number' => '<span class="screen-reader-text">'.__( 'Page', 'castor' ).' </span>',
93 93
 			'current'            => $this->gallery->query['paged'],
94 94
 			'mid_size'           => 1,
95 95
 			'next_text'          => __( 'Next', 'castor' ),
96 96
 			'prev_text'          => __( 'Previous', 'castor' ),
97 97
 			'total'              => $this->gallery->max_num_pages,
98
-		]);
98
+		] );
99 99
 	}
100 100
 
101 101
 	/**
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	{
109 109
 		$bool = $this->getValue( $key, $value );
110 110
 
111
-		if( is_null( filter_var( $bool, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE ))) {
111
+		if( is_null( filter_var( $bool, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE ) ) ) {
112 112
 			$bool = $this->postmeta->get( $bool );
113 113
 		}
114 114
 		return wp_validate_boolean( $bool );
@@ -123,10 +123,10 @@  discard block
 block discarded – undo
123 123
 	{
124 124
 		$gallery = $this->getValue( 'gallery', $value );
125 125
 
126
-		if( !is_numeric( $gallery ) && is_string( $gallery )) {
127
-			$gallery = intval( $this->postmeta->get( $gallery ));
126
+		if( !is_numeric( $gallery ) && is_string( $gallery ) ) {
127
+			$gallery = intval( $this->postmeta->get( $gallery ) );
128 128
 		}
129
-		return !is_null( get_post( $gallery ))
129
+		return !is_null( get_post( $gallery ) )
130 130
 			? intval( $gallery )
131 131
 			: 0;
132 132
 	}
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 	{
141 141
 		$perPage = $this->getValue( 'images_per_page', $value );
142 142
 
143
-		if( !is_numeric( $perPage ) && is_string( $perPage )) {
143
+		if( !is_numeric( $perPage ) && is_string( $perPage ) ) {
144 144
 			$perPage = $this->postmeta->get( $perPage );
145 145
 		}
146 146
 		return !!intval( $perPage )
@@ -167,11 +167,11 @@  discard block
 block discarded – undo
167 167
 	{
168 168
 		$media = $this->getValue( 'media', $value );
169 169
 
170
-		if( is_string( $media )) {
170
+		if( is_string( $media ) ) {
171 171
 			$media = $this->postmeta->get( $media, [
172 172
 				'ID'     => $this->getGalleryArg(),
173 173
 				'single' => false,
174
-			]);
174
+			] );
175 175
 		}
176 176
 		return is_array( $media )
177 177
 			? wp_parse_id_list( $media )
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 */
184 184
 	protected function getPaged()
185 185
 	{
186
-		return intval( get_query_var(( is_front_page() ? 'page' : 'paged' ))) ?: 1;
186
+		return intval( get_query_var( ( is_front_page() ? 'page' : 'paged' ) ) ) ?: 1;
187 187
 	}
188 188
 
189 189
 	/**
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 	 */
230 230
 	protected function getValue( $key, $value = null )
231 231
 	{
232
-		if( is_null( $value ) && isset( $this->args[$key] )) {
232
+		if( is_null( $value ) && isset( $this->args[$key] ) ) {
233 233
 			$value = $this->args[$key];
234 234
 		}
235 235
 		return $value;
@@ -241,20 +241,20 @@  discard block
 block discarded – undo
241 241
 	protected function normalizeArgs( array $args = [] )
242 242
 	{
243 243
 		$defaults = [
244
-			'gallery',         // (string) meta_key | (int) post_id
245
-			'lazyload',        // (string) meta_key | (bool)
246
-			'media',           // (string) meta_key | (array) post_ids
247
-			'pagination',      // (string) meta_key | (bool)
244
+			'gallery', // (string) meta_key | (int) post_id
245
+			'lazyload', // (string) meta_key | (bool)
246
+			'media', // (string) meta_key | (array) post_ids
247
+			'pagination', // (string) meta_key | (bool)
248 248
 			'images_per_page', // (string) meta_key | (int) number
249
-			'permalinks',      // (string) meta_key | (bool)
249
+			'permalinks', // (string) meta_key | (bool)
250 250
 		];
251 251
 
252 252
 		$this->args = shortcode_atts( array_combine( $defaults, $defaults ), $args );
253 253
 
254 254
 		array_walk( $this->args, function( &$value, $key ) {
255
-			$method = $this->utility->buildMethodName( $key . '_arg' );
256
-			if( method_exists( $this, $method )) {
257
-				$value = call_user_func([ $this, $method ], $value );
255
+			$method = $this->utility->buildMethodName( $key.'_arg' );
256
+			if( method_exists( $this, $method ) ) {
257
+				$value = call_user_func( [$this, $method], $value );
258 258
 			}
259 259
 		});
260 260
 
@@ -267,10 +267,10 @@  discard block
 block discarded – undo
267 267
 	 */
268 268
 	protected function renderImageCaption( $image )
269 269
 	{
270
-		if( !empty( $image->copyright )) {
270
+		if( !empty( $image->copyright ) ) {
271 271
 			$image->caption .= sprintf( ' <span itemprop="copyrightHolder">%s</span>', $image->copyright );
272 272
 		}
273
-		if( empty( $image->caption ))return;
273
+		if( empty( $image->caption ) )return;
274 274
 		return sprintf( '<figcaption itemprop="caption description">%s</figcaption>', $image->caption );
275 275
 	}
276 276
 
Please login to merge, or discard this patch.
src/Helpers/SiteMeta.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	{
29 29
 		$args = array_pad( $args, 2, null );
30 30
 		$group = $this->$group;
31
-		if( is_object( $group )) {
31
+		if( is_object( $group ) ) {
32 32
 			return $group;
33 33
 		}
34 34
 		return $this->get( $group, $args[0], $args[1] );
@@ -43,10 +43,10 @@  discard block
 block discarded – undo
43 43
 		if( $group == 'all' ) {
44 44
 			return (object) $this->options;
45 45
 		}
46
-		if( empty( $group )) {
46
+		if( empty( $group ) ) {
47 47
 			$group = $this->getDefaultGroup();
48 48
 		}
49
-		if( is_array( $group )) {
49
+		if( is_array( $group ) ) {
50 50
 			$group = reset( $group );
51 51
 		}
52 52
 		return isset( $this->options[$group] )
@@ -65,13 +65,13 @@  discard block
 block discarded – undo
65 65
 		if( func_num_args() < 1 ) {
66 66
 			return $this->all;
67 67
 		}
68
-		if( is_string( $group )) {
68
+		if( is_string( $group ) ) {
69 69
 			$group = $this->$group;
70 70
 		}
71
-		if( !is_array( $group )) {
71
+		if( !is_array( $group ) ) {
72 72
 			return $fallback;
73 73
 		}
74
-		if( is_null( $key )) {
74
+		if( is_null( $key ) ) {
75 75
 			return $group;
76 76
 		}
77 77
 		return $this->getValue( $group, $key, $fallback );
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 	 */
93 93
 	protected function getValue( array $group, $key = '', $fallback )
94 94
 	{
95
-		if( empty( $key ) || !array_key_exists( $key, $group )) {
95
+		if( empty( $key ) || !array_key_exists( $key, $group ) ) {
96 96
 			return $fallback;
97 97
 		}
98 98
 		return empty( $group[$key] ) && !is_null( $fallback )
Please login to merge, or discard this patch.
src/Helpers/Render.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
 	public function blockquote( $metaKey = false, array $attributes = [] )
26 26
 	{
27
-		if( $value = $this->postmeta->get( $metaKey )) {
27
+		if( $value = $this->postmeta->get( $metaKey ) ) {
28 28
 			$this->utility->printTag( 'blockquote', wp_strip_all_tags( $value ), $attributes );
29 29
 		}
30 30
 	}
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 		if( $passthrough ) {
35 35
 			$url = $postId;
36 36
 		}
37
-		if( !isset( $url )) {
37
+		if( !isset( $url ) ) {
38 38
 			$url = get_permalink( $postId );
39 39
 			if( !$title ) {
40 40
 				$title = get_the_title( $postId );
@@ -56,18 +56,18 @@  discard block
 block discarded – undo
56 56
 		if( $passthrough ) {
57 57
 			$content = $metaKey;
58 58
 		}
59
-		if( !isset( $content )) {
59
+		if( !isset( $content ) ) {
60 60
 			$content = $metaKey
61 61
 				? $this->postmeta->get( $metaKey )
62 62
 				: get_the_content();
63 63
 		}
64
-		echo str_replace( ']]>', ']]&gt;', apply_filters( 'the_content', $content ));
64
+		echo str_replace( ']]>', ']]&gt;', apply_filters( 'the_content', $content ) );
65 65
 	}
66 66
 
67 67
 	public function copyright( array $args = [] )
68 68
 	{
69
-		$args = shortcode_atts([
70
-			'copyright' => sprintf( '<span>%s </span>&copy;', __( 'Copyright', 'castor' )),
69
+		$args = shortcode_atts( [
70
+			'copyright' => sprintf( '<span>%s </span>&copy;', __( 'Copyright', 'castor' ) ),
71 71
 			'date' => date( 'Y' ),
72 72
 			'name' => get_bloginfo( 'name' ),
73 73
 			'separator' => '&mdash;',
@@ -86,11 +86,11 @@  discard block
 block discarded – undo
86 86
 			'image'  => get_post_thumbnail_id(),
87 87
 			'player' => '',
88 88
 			'video'  => 'featured_video',
89
-		]);
89
+		] );
90 90
 		$featuredHtml = $this->media->video( wp_parse_args( $args, [
91 91
 			'url' => $args['video'],
92
-		]));
93
-		if( empty( $featuredHtml ) && $featuredImage = $this->media->getImage( $args['image'] )) {
92
+		] ) );
93
+		if( empty( $featuredHtml ) && $featuredImage = $this->media->getImage( $args['image'] ) ) {
94 94
 			$featuredCaption = $featuredImage->caption
95 95
 				? sprintf( '<figcaption>%s</figcaption>', $featuredImage->caption )
96 96
 				: '';
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 				$featuredCaption
101 101
 			);
102 102
 		}
103
-		if( !empty( $featuredHtml )) {
103
+		if( !empty( $featuredHtml ) ) {
104 104
 			printf( '<figure class="%s">%s</figure>', $args['class'], $featuredHtml );
105 105
 		}
106 106
 	}
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 	public function madeWithLove( $name )
146 146
 	{
147 147
 		printf( __( 'Made with %s by %s', 'castor' ),
148
-			file_get_contents( sprintf( '%simg/heart.svg', \GeminiLabs\Castor\Application::getInstance()->assets )),
148
+			file_get_contents( sprintf( '%simg/heart.svg', \GeminiLabs\Castor\Application::getInstance()->assets ) ),
149 149
 			$name
150 150
 		);
151 151
 	}
Please login to merge, or discard this patch.
src/Helpers/PostMeta.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@  discard block
 block discarded – undo
16 16
 	 */
17 17
 	public function get( $metaKey, array $args = [] )
18 18
 	{
19
-		if( empty( $metaKey ))return;
19
+		if( empty( $metaKey ) )return;
20 20
 
21 21
 		$args = $this->normalize( $args );
22 22
 		$metaKey = $this->buildMetaKey( $metaKey, $args['prefix'] );
23 23
 		$metaValue = get_post_meta( $args['id'], $metaKey, $args['single'] );
24 24
 
25
-		if( is_string( $metaValue )) {
25
+		if( is_string( $metaValue ) ) {
26 26
 			$metaValue = trim( $metaValue );
27 27
 		}
28 28
 		return empty( $metaValue )
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
 	 */
38 38
 	protected function buildMetaKey( $metaKey, $prefix )
39 39
 	{
40
-		return ( substr( $metaKey, 0, 1 ) == '_' && !empty( $prefix ))
40
+		return ( substr( $metaKey, 0, 1 ) == '_' && !empty( $prefix ) )
41 41
 			? sprintf( '_%s%s', rtrim( $prefix, '_' ), $metaKey )
42
-			: $prefix . $metaKey;
42
+			: $prefix.$metaKey;
43 43
 	}
44 44
 
45 45
 	/**
@@ -53,6 +53,6 @@  discard block
 block discarded – undo
53 53
 			'single'   => true,
54 54
 			'prefix'   => apply_filters( 'pollux/prefix', 'pollux_' ),
55 55
 		];
56
-		return shortcode_atts( $defaults, array_change_key_case( $args ));
56
+		return shortcode_atts( $defaults, array_change_key_case( $args ) );
57 57
 	}
58 58
 }
Please login to merge, or discard this patch.