Completed
Push — master ( ed64c2...186a7a )
by
unknown
8s
created
app/classes/classy.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@
 block discarded – undo
259 259
 	 *
260 260
 	 * @param array $prefs Args for paginate_links.
261 261
 	 *
262
-	 * @return array mixed
262
+	 * @return \stdClass mixed
263 263
 	 */
264 264
 	public static function get_pagination( $prefs = array() ) {
265 265
 
Please login to merge, or discard this patch.
Spacing   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	 */
33 33
 	public static function get_instance() {
34 34
 
35
-		if ( null === self::$single_instance ) {
35
+		if (null === self::$single_instance) {
36 36
 
37 37
 			self::$single_instance = new self();
38 38
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
 		$this->init_config();
60 60
 
61
-		add_filter( 'theme_page_templates', array( $this, 'filter_templates' ) );
61
+		add_filter('theme_page_templates', array($this, 'filter_templates'));
62 62
 	}
63 63
 
64 64
 	/**
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 	 * Load template functions.
73 73
 	 */
74 74
 	private function load_template_function() {
75
-		require_once( CLASSY_THEME_PATH . 'app/functions/template-functions.php' );
75
+		require_once(CLASSY_THEME_PATH.'app/functions/template-functions.php');
76 76
 	}
77 77
 
78 78
 	/**
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
 
86 86
 		$theme = wp_get_theme();
87 87
 
88
-		define( 'CLASSY_THEME', $theme->template );
89
-		define( 'CLASSY_THEME_NAME', $theme->get( 'Name' ) );
90
-		define( 'CLASSY_THEME_PATH', get_template_directory() . '/' );
91
-		define( 'CLASSY_THEME_DIR', get_template_directory_uri() . '/' );
92
-		define( 'CLASSY_THEME_VERSION', $theme->get( 'Version' ) );
93
-		define( 'CLASSY_THEME_FRAMEWORK_PATH', CLASSY_THEME_PATH . 'app/' );
94
-		define( 'CLASSY_THEME_FRAMEWORK_DIR', CLASSY_THEME_DIR . 'app/' );
88
+		define('CLASSY_THEME', $theme->template);
89
+		define('CLASSY_THEME_NAME', $theme->get('Name'));
90
+		define('CLASSY_THEME_PATH', get_template_directory().'/');
91
+		define('CLASSY_THEME_DIR', get_template_directory_uri().'/');
92
+		define('CLASSY_THEME_VERSION', $theme->get('Version'));
93
+		define('CLASSY_THEME_FRAMEWORK_PATH', CLASSY_THEME_PATH.'app/');
94
+		define('CLASSY_THEME_FRAMEWORK_DIR', CLASSY_THEME_DIR.'app/');
95 95
 
96 96
 	}
97 97
 
@@ -109,11 +109,11 @@  discard block
 block discarded – undo
109 109
 	 *
110 110
 	 * @return array
111 111
 	 */
112
-	public function filter_templates( $page_templates = array() ) {
112
+	public function filter_templates($page_templates = array()) {
113 113
 
114 114
 		$custom_templates = View::get_page_templates_list();
115 115
 
116
-		return array_merge( $page_templates, $custom_templates );
116
+		return array_merge($page_templates, $custom_templates);
117 117
 
118 118
 	}
119 119
 
@@ -124,11 +124,11 @@  discard block
 block discarded – undo
124 124
 	 *
125 125
 	 * @return mixed|bool Return false if variable not found.
126 126
 	 */
127
-	public static function get_config_var( $name ) {
127
+	public static function get_config_var($name) {
128 128
 
129 129
 		$vars = Config::get_vars();
130 130
 
131
-		return ( isset( $vars[ $name ] ) ) ? $vars[ $name ] : false;
131
+		return (isset($vars[$name])) ? $vars[$name] : false;
132 132
 
133 133
 	}
134 134
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 	 */
140 140
 	public static function textdomain() {
141 141
 
142
-		$textdomain = Classy::get_config_var( 'textdomain' );
142
+		$textdomain = Classy::get_config_var('textdomain');
143 143
 
144 144
 		return $textdomain ? $textdomain : CLASSY_THEME;
145 145
 
@@ -154,17 +154,17 @@  discard block
 block discarded – undo
154 154
 	 * @param  array|null  $data Additional params.
155 155
 	 * @return void
156 156
 	 */
157
-	public static function render( $view = null, $data = null ) {
157
+	public static function render($view = null, $data = null) {
158 158
 
159
-		$views = CLASSY_THEME_PATH . View::$folder;
160
-		$cache = WP_CONTENT_DIR . '/viewcache';
159
+		$views = CLASSY_THEME_PATH.View::$folder;
160
+		$cache = WP_CONTENT_DIR.'/viewcache';
161 161
 		$common_scope = Scope::get_common_scope();
162 162
 
163
-		if ( null !== $view && is_string( $view ) ) {
163
+		if (null !== $view && is_string($view)) {
164 164
 
165
-			if ( $data && is_array( $data ) ) {
165
+			if ($data && is_array($data)) {
166 166
 
167
-				$scope = array_merge( $common_scope, $data );
167
+				$scope = array_merge($common_scope, $data);
168 168
 
169 169
 			} else {
170 170
 
@@ -179,9 +179,9 @@  discard block
 block discarded – undo
179 179
 
180 180
 		}
181 181
 
182
-		$renderer = new BladeRenderer( $views, array( 'cache_path' => $cache ) );
182
+		$renderer = new BladeRenderer($views, array('cache_path' => $cache));
183 183
 
184
-		echo $renderer->render( $view, $scope ); // XSS: xss ok.
184
+		echo $renderer->render($view, $scope); // XSS: xss ok.
185 185
 
186 186
 	}
187 187
 
@@ -206,27 +206,27 @@  discard block
 block discarded – undo
206 206
 	 *
207 207
 	 * @return array
208 208
 	 */
209
-	public static function get_posts( $args = false, $return = '\Classy\Models\Post' ) {
209
+	public static function get_posts($args = false, $return = '\Classy\Models\Post') {
210 210
 
211 211
 		$_return = array();
212 212
 
213
-		$query = Query_Helper::find_query( $args );
213
+		$query = Query_Helper::find_query($args);
214 214
 
215
-		if ( isset( $query->posts ) ) {
215
+		if (isset($query->posts)) {
216 216
 
217
-			foreach ( $query->posts as $post ) {
217
+			foreach ($query->posts as $post) {
218 218
 
219
-				if ( 'id' === $return ) {
219
+				if ('id' === $return) {
220 220
 
221 221
 					$_return[] = $post->id;
222 222
 
223
-				} elseif ( 'object' === $return ) {
223
+				} elseif ('object' === $return) {
224 224
 
225 225
 					$_return[] = $post;
226 226
 
227
-				} elseif ( class_exists( $return ) ) {
227
+				} elseif (class_exists($return)) {
228 228
 
229
-					$_return[] = new $return( $post );
229
+					$_return[] = new $return($post);
230 230
 
231 231
 				}
232 232
 			}
@@ -244,11 +244,11 @@  discard block
 block discarded – undo
244 244
 	 *
245 245
 	 * @return mixed
246 246
 	 */
247
-	public static function get_post( $args = false, $return_type = '\Classy\Models\Post' ) {
247
+	public static function get_post($args = false, $return_type = '\Classy\Models\Post') {
248 248
 
249
-		$posts = self::get_posts( $args, $return_type );
249
+		$posts = self::get_posts($args, $return_type);
250 250
 
251
-		if ( $post = reset( $posts ) ) {
251
+		if ($post = reset($posts)) {
252 252
 			return $post;
253 253
 		}
254 254
 
@@ -261,62 +261,62 @@  discard block
 block discarded – undo
261 261
 	 *
262 262
 	 * @return array mixed
263 263
 	 */
264
-	public static function get_pagination( $prefs = array() ) {
264
+	public static function get_pagination($prefs = array()) {
265 265
 
266 266
 		global $wp_query;
267 267
 		global $paged;
268 268
 		global $wp_rewrite;
269 269
 
270 270
 		$args = array();
271
-		$args['total'] = ceil( $wp_query->found_posts / $wp_query->query_vars['posts_per_page'] );
271
+		$args['total'] = ceil($wp_query->found_posts / $wp_query->query_vars['posts_per_page']);
272 272
 
273
-		if ( $wp_rewrite->using_permalinks() ) {
273
+		if ($wp_rewrite->using_permalinks()) {
274 274
 
275
-			$url = explode( '?', get_pagenum_link( 0 ) );
275
+			$url = explode('?', get_pagenum_link(0));
276 276
 
277
-			if ( isset( $url[1] ) ) {
278
-				parse_str( $url[1], $query );
277
+			if (isset($url[1])) {
278
+				parse_str($url[1], $query);
279 279
 				$args['add_args'] = $query;
280 280
 			}
281 281
 
282 282
 			$args['format'] = 'page/%#%';
283
-			$args['base'] = trailingslashit( $url[0] ).'%_%';
283
+			$args['base'] = trailingslashit($url[0]).'%_%';
284 284
 
285 285
 		} else {
286 286
 			$big = 999999999;
287
-			$args['base'] = str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) );
287
+			$args['base'] = str_replace($big, '%#%', esc_url(get_pagenum_link($big)));
288 288
 		}
289 289
 
290 290
 		$args['type'] = 'array';
291
-		$args['current'] = max( 1, get_query_var( 'paged' ) );
292
-		$args['mid_size'] = max( 9 - $args['current'], 3 );
291
+		$args['current'] = max(1, get_query_var('paged'));
292
+		$args['mid_size'] = max(9 - $args['current'], 3);
293 293
 		$args['prev_next'] = false;
294 294
 
295
-		if ( is_int( $prefs ) ) {
295
+		if (is_int($prefs)) {
296 296
 			$args['mid_size'] = $prefs - 2;
297 297
 		} else {
298
-			$args = array_merge( $args, $prefs );
298
+			$args = array_merge($args, $prefs);
299 299
 		}
300 300
 
301 301
 		$data = array();
302
-		$data['pages'] = Helper::paginate_links( $args );
303
-		$next = get_next_posts_page_link( $args['total'] );
302
+		$data['pages'] = Helper::paginate_links($args);
303
+		$next = get_next_posts_page_link($args['total']);
304 304
 
305
-		if ( $next ) {
306
-			$data['next'] = array( 'link' => untrailingslashit( $next ), 'class' => 'page-numbers next' );
305
+		if ($next) {
306
+			$data['next'] = array('link' => untrailingslashit($next), 'class' => 'page-numbers next');
307 307
 		}
308 308
 
309
-		$prev = previous_posts( false );
309
+		$prev = previous_posts(false);
310 310
 
311
-		if ( $prev ) {
312
-			$data['prev'] = array( 'link' => untrailingslashit( $prev ), 'class' => 'page-numbers prev' );
311
+		if ($prev) {
312
+			$data['prev'] = array('link' => untrailingslashit($prev), 'class' => 'page-numbers prev');
313 313
 		}
314 314
 
315
-		if ( $paged < 2 ) {
315
+		if ($paged < 2) {
316 316
 			$data['prev'] = null;
317 317
 		}
318 318
 
319
-		return Helper::array_to_object( $data );
319
+		return Helper::array_to_object($data);
320 320
 
321 321
 	}
322 322
 }
Please login to merge, or discard this patch.
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -229,12 +229,14 @@  discard block
 block discarded – undo
229 229
 
230 230
 				$scope = array_merge( $common_scope, $data );
231 231
 
232
-			} else {
232
+			}
233
+			else {
233 234
 
234 235
 				$scope = $common_scope;
235 236
 
236 237
 			}
237
-		} else {
238
+		}
239
+		else {
238 240
 
239 241
 			$view = ClassyView::get_view();
240 242
 
@@ -283,11 +285,13 @@  discard block
 block discarded – undo
283 285
 
284 286
 					$_return[] = $post->id;
285 287
 
286
-				} elseif ( 'object' === $return ) {
288
+				}
289
+				elseif ( 'object' === $return ) {
287 290
 
288 291
 					$_return[] = $post;
289 292
 
290
-				} elseif ( class_exists( $return ) ) {
293
+				}
294
+				elseif ( class_exists( $return ) ) {
291 295
 
292 296
 					$_return[] = new $return( $post );
293 297
 
@@ -341,7 +345,8 @@  discard block
 block discarded – undo
341 345
 			$args['format'] = 'page/%#%';
342 346
 			$args['base'] = trailingslashit( $url[0] ).'%_%';
343 347
 
344
-		} else {
348
+		}
349
+		else {
345 350
 			$big = 999999999;
346 351
 			$args['base'] = str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) );
347 352
 		}
@@ -353,7 +358,8 @@  discard block
 block discarded – undo
353 358
 
354 359
 		if ( is_int( $prefs ) ) {
355 360
 			$args['mid_size'] = $prefs - 2;
356
-		} else {
361
+		}
362
+		else {
357 363
 			$args = array_merge( $args, $prefs );
358 364
 		}
359 365
 
Please login to merge, or discard this patch.
app/classes/models/post.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
 	/**
187 187
 	 * Returns first attached image id
188 188
 	 *
189
-	 * @return int|boolean
189
+	 * @return integer|null
190 190
 	 */
191 191
 	public function get_first_attached_image_id() {
192 192
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -97,7 +97,8 @@  discard block
 block discarded – undo
97 97
 		if ( is_integer( $post ) ) {
98 98
 			$this->ID = $post;
99 99
 			$this->init();
100
-		} elseif ( is_a( $post, '\WP_Post' ) ) {
100
+		}
101
+		elseif ( is_a( $post, '\WP_Post' ) ) {
101 102
 			$this->import( $post );
102 103
 		}
103 104
 	}
@@ -375,7 +376,8 @@  discard block
 block discarded – undo
375 376
 			if ( $force ) {
376 377
 				$text = Helper::trim_words( $this->post_excerpt, $len, false );
377 378
 				$trimmed = true;
378
-			} else {
379
+			}
380
+			else {
379 381
 				$text = $this->post_excerpt;
380 382
 			}
381 383
 		}
@@ -434,7 +436,8 @@  discard block
 block discarded – undo
434 436
 
435 437
 			if ( $readmore && isset( $readmore_matches ) && ! empty( $readmore_matches[1] ) ) {
436 438
 				$text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim( $readmore_matches[1] ) . '</a>';
437
-			} elseif ( $readmore ) {
439
+			}
440
+			elseif ( $readmore ) {
438 441
 				$text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim( $readmore ) . '</a>';
439 442
 			}
440 443
 
Please login to merge, or discard this patch.
Spacing   +75 added lines, -75 removed lines patch added patch discarded remove patch
@@ -98,12 +98,12 @@  discard block
 block discarded – undo
98 98
 	 *
99 99
 	 * @param object|int $post WP_Post or WP_Post.ID.
100 100
 	 */
101
-	public function __construct( $post = null ) {
102
-		if ( is_integer( $post ) ) {
101
+	public function __construct($post = null) {
102
+		if (is_integer($post)) {
103 103
 			$this->ID = $post;
104 104
 			$this->init();
105
-		} elseif ( is_a( $post, '\WP_Post' ) ) {
106
-			$this->import( $post );
105
+		} elseif (is_a($post, '\WP_Post')) {
106
+			$this->import($post);
107 107
 		}
108 108
 	}
109 109
 
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
 	protected function init() {
114 114
 		$post = $this->get_object();
115 115
 
116
-		if ( is_a( $post, '\WP_Post' ) ) {
117
-			$this->import( $post );
116
+		if (is_a($post, '\WP_Post')) {
117
+			$this->import($post);
118 118
 		}
119 119
 	}
120 120
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 	 * @return \WP_Post
125 125
 	 */
126 126
 	public function get_object() {
127
-		return get_post( $this->ID );
127
+		return get_post($this->ID);
128 128
 	}
129 129
 
130 130
 	/**
@@ -133,10 +133,10 @@  discard block
 block discarded – undo
133 133
 	 * @return boolean
134 134
 	 */
135 135
 	public function can_edit() {
136
-		if ( ! function_exists( 'current_user_can' ) ) {
136
+		if (!function_exists('current_user_can')) {
137 137
 			return false;
138 138
 		}
139
-		if ( current_user_can( 'edit_post', $this->ID ) ) {
139
+		if (current_user_can('edit_post', $this->ID)) {
140 140
 			return true;
141 141
 		}
142 142
 
@@ -149,8 +149,8 @@  discard block
 block discarded – undo
149 149
 	 * @return string
150 150
 	 */
151 151
 	public function get_edit_url() {
152
-		if ( $this->can_edit() ) {
153
-			return get_edit_post_link( $this->ID );
152
+		if ($this->can_edit()) {
153
+			return get_edit_post_link($this->ID);
154 154
 		}
155 155
 
156 156
 		return '';
@@ -173,9 +173,9 @@  discard block
 block discarded – undo
173 173
 			'fields' => 'ids',
174 174
 		);
175 175
 
176
-		$images = get_children( $attrs );
176
+		$images = get_children($attrs);
177 177
 
178
-		if ( ! count( $images ) ) {
178
+		if (!count($images)) {
179 179
 			return false;
180 180
 		}
181 181
 
@@ -192,11 +192,11 @@  discard block
 block discarded – undo
192 192
 
193 193
 		$images = $this->get_attached_images();
194 194
 
195
-		if ( $images ) {
195
+		if ($images) {
196 196
 
197
-			foreach ( $images as $image_id ) {
197
+			foreach ($images as $image_id) {
198 198
 
199
-				$_return[] = new Image( $image_id );
199
+				$_return[] = new Image($image_id);
200 200
 
201 201
 			}
202 202
 		}
@@ -222,13 +222,13 @@  discard block
 block discarded – undo
222 222
 			'fields' => 'ids',
223 223
 		);
224 224
 
225
-		$images = get_children( $attrs );
225
+		$images = get_children($attrs);
226 226
 
227
-		if ( ! count( $images ) ) {
227
+		if (!count($images)) {
228 228
 			return false;
229 229
 		}
230 230
 
231
-		$images = array_values( $images );
231
+		$images = array_values($images);
232 232
 
233 233
 		return $images[0];
234 234
 	}
@@ -242,8 +242,8 @@  discard block
 block discarded – undo
242 242
 
243 243
 		$image_id = $this->get_first_attached_image_id();
244 244
 
245
-		if ( $image_id ) {
246
-			return new Image( $image_id );
245
+		if ($image_id) {
246
+			return new Image($image_id);
247 247
 		}
248 248
 
249 249
 		return new Image();
@@ -255,12 +255,12 @@  discard block
 block discarded – undo
255 255
 	 * @return Image
256 256
 	 */
257 257
 	public function thumbnail() {
258
-		if ( function_exists( 'get_post_thumbnail_id' ) ) {
259
-			$image_id = get_post_thumbnail_id( $this->ID );
258
+		if (function_exists('get_post_thumbnail_id')) {
259
+			$image_id = get_post_thumbnail_id($this->ID);
260 260
 
261
-			if ( $image_id ) {
261
+			if ($image_id) {
262 262
 
263
-				return new Image( $image_id );
263
+				return new Image($image_id);
264 264
 
265 265
 			}
266 266
 		}
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
 	 * @return string
275 275
 	 */
276 276
 	public function get_title() {
277
-		return apply_filters( 'the_title', $this->post_title, $this->ID );
277
+		return apply_filters('the_title', $this->post_title, $this->ID);
278 278
 	}
279 279
 
280 280
 	/**
@@ -293,24 +293,24 @@  discard block
 block discarded – undo
293 293
 	 *
294 294
 	 * @return string Post content
295 295
 	 */
296
-	public function get_content( $page = 0 ) {
297
-		if ( 0 === absint( $page ) && $this->post_content ) {
296
+	public function get_content($page = 0) {
297
+		if (0 === absint($page) && $this->post_content) {
298 298
 			return $this->post_content;
299 299
 		}
300 300
 
301 301
 		$content = $this->post_content;
302 302
 
303
-		if ( $page ) {
304
-			$contents = explode( '<!--nextpage-->', $content );
303
+		if ($page) {
304
+			$contents = explode('<!--nextpage-->', $content);
305 305
 
306 306
 			$page--;
307 307
 
308
-			if ( count( $contents ) > $page ) {
309
-				$content = $contents[ $page ];
308
+			if (count($contents) > $page) {
309
+				$content = $contents[$page];
310 310
 			}
311 311
 		}
312 312
 
313
-		$content = apply_filters( 'the_content', ($content) );
313
+		$content = apply_filters('the_content', ($content));
314 314
 
315 315
 		return $content;
316 316
 	}
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 	 * @return object
331 331
 	 */
332 332
 	public function get_post_type() {
333
-		return get_post_type_object( $this->post_type );
333
+		return get_post_type_object($this->post_type);
334 334
 	}
335 335
 
336 336
 	/**
@@ -339,11 +339,11 @@  discard block
 block discarded – undo
339 339
 	 * @return string
340 340
 	 */
341 341
 	public function get_permalink() {
342
-		if ( isset( $this->permalink ) ) {
342
+		if (isset($this->permalink)) {
343 343
 			return $this->permalink;
344 344
 		}
345 345
 
346
-		$this->permalink = get_permalink( $this->ID );
346
+		$this->permalink = get_permalink($this->ID);
347 347
 
348 348
 		return $this->permalink;
349 349
 	}
@@ -369,84 +369,84 @@  discard block
 block discarded – undo
369 369
 	 *
370 370
 	 * @return string            Post preview.
371 371
 	 */
372
-	public function get_preview( $len = 50, $force = false, $readmore = 'Read More', $strip = true ) {
372
+	public function get_preview($len = 50, $force = false, $readmore = 'Read More', $strip = true) {
373 373
 		$text = '';
374 374
 		$trimmed = false;
375 375
 
376
-		if ( isset( $this->post_excerpt ) && strlen( $this->post_excerpt ) ) {
376
+		if (isset($this->post_excerpt) && strlen($this->post_excerpt)) {
377 377
 
378
-			if ( $force ) {
379
-				$text = Helper::trim_words( $this->post_excerpt, $len, false );
378
+			if ($force) {
379
+				$text = Helper::trim_words($this->post_excerpt, $len, false);
380 380
 				$trimmed = true;
381 381
 			} else {
382 382
 				$text = $this->post_excerpt;
383 383
 			}
384 384
 		}
385 385
 
386
-		if ( ! strlen( $text ) && preg_match( '/<!--\s?more(.*?)?-->/', $this->post_content, $readmore_matches ) ) {
386
+		if (!strlen($text) && preg_match('/<!--\s?more(.*?)?-->/', $this->post_content, $readmore_matches)) {
387 387
 
388
-			$pieces = explode( $readmore_matches[0], $this->post_content );
388
+			$pieces = explode($readmore_matches[0], $this->post_content);
389 389
 			$text = $pieces[0];
390 390
 
391
-			if ( $force ) {
392
-				$text = Helper::trim_words( $text, $len, false );
391
+			if ($force) {
392
+				$text = Helper::trim_words($text, $len, false);
393 393
 				$trimmed = true;
394 394
 			}
395 395
 
396
-			$text = do_shortcode( $text );
396
+			$text = do_shortcode($text);
397 397
 
398 398
 		}
399 399
 
400
-		if ( ! strlen( $text ) ) {
400
+		if (!strlen($text)) {
401 401
 
402
-			$text = Helper::trim_words( $this->get_content(), $len, false );
402
+			$text = Helper::trim_words($this->get_content(), $len, false);
403 403
 			$trimmed = true;
404 404
 
405 405
 		}
406 406
 
407
-		if ( ! strlen( trim( $text ) ) ) {
407
+		if (!strlen(trim($text))) {
408 408
 
409
-			return trim( $text );
409
+			return trim($text);
410 410
 
411 411
 		}
412 412
 
413
-		if ( $strip ) {
413
+		if ($strip) {
414 414
 
415
-			$text = trim( strip_tags( $text ) );
415
+			$text = trim(strip_tags($text));
416 416
 
417 417
 		}
418 418
 
419
-		if ( strlen( $text ) ) {
419
+		if (strlen($text)) {
420 420
 
421
-			$text = trim( $text );
422
-			$last = $text[ strlen( $text ) - 1 ];
421
+			$text = trim($text);
422
+			$last = $text[strlen($text) - 1];
423 423
 
424
-			if ( '.' !== $last && $trimmed ) {
424
+			if ('.' !== $last && $trimmed) {
425 425
 				$text .= ' &hellip; ';
426 426
 			}
427 427
 
428
-			if ( ! $strip ) {
429
-				$last_p_tag = strrpos( $text, '</p>' );
430
-				if ( false !== $last_p_tag ) {
431
-					$text = substr( $text, 0, $last_p_tag );
428
+			if (!$strip) {
429
+				$last_p_tag = strrpos($text, '</p>');
430
+				if (false !== $last_p_tag) {
431
+					$text = substr($text, 0, $last_p_tag);
432 432
 				}
433
-				if ( '.' !== $last && $trimmed ) {
433
+				if ('.' !== $last && $trimmed) {
434 434
 					$text .= ' &hellip; ';
435 435
 				}
436 436
 			}
437 437
 
438
-			if ( $readmore && isset( $readmore_matches ) && ! empty( $readmore_matches[1] ) ) {
439
-				$text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim( $readmore_matches[1] ) . '</a>';
440
-			} elseif ( $readmore ) {
441
-				$text .= ' <a href="' . $this->get_permalink() . '" class="read-more">' . trim( $readmore ) . '</a>';
438
+			if ($readmore && isset($readmore_matches) && !empty($readmore_matches[1])) {
439
+				$text .= ' <a href="'.$this->get_permalink().'" class="read-more">'.trim($readmore_matches[1]).'</a>';
440
+			} elseif ($readmore) {
441
+				$text .= ' <a href="'.$this->get_permalink().'" class="read-more">'.trim($readmore).'</a>';
442 442
 			}
443 443
 
444
-			if ( ! $strip ) {
444
+			if (!$strip) {
445 445
 				$text .= '</p>';
446 446
 			}
447 447
 		}
448 448
 
449
-		return trim( $text );
449
+		return trim($text);
450 450
 	}
451 451
 
452 452
 	/**
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
 	 *
458 458
 	 * @return array
459 459
 	 */
460
-	public function get_comments( $status = 'approve', $order = 'DESC' ) {
460
+	public function get_comments($status = 'approve', $order = 'DESC') {
461 461
 
462 462
 		$_return = array();
463 463
 
@@ -467,25 +467,25 @@  discard block
 block discarded – undo
467 467
 			'order' => $order,
468 468
 		);
469 469
 
470
-		$comments = get_comments( $args );
470
+		$comments = get_comments($args);
471 471
 
472
-		foreach ( $comments as $comment ) {
472
+		foreach ($comments as $comment) {
473 473
 
474
-			$_return[ $comment->comment_ID ] = new Comment( $comment );
474
+			$_return[$comment->comment_ID] = new Comment($comment);
475 475
 
476 476
 		}
477 477
 
478
-		foreach ( $_return as $key => $comment ) {
478
+		foreach ($_return as $key => $comment) {
479 479
 
480
-			if ( $comment->has_parent() ) {
480
+			if ($comment->has_parent()) {
481 481
 
482
-				$_return[ $comment->comment_parent ]->add_child( $comment );
482
+				$_return[$comment->comment_parent]->add_child($comment);
483 483
 
484
-				unset( $_return[ $key ] );
484
+				unset($_return[$key]);
485 485
 
486 486
 			}
487 487
 		}
488 488
 
489
-		return array_values( $_return );
489
+		return array_values($_return);
490 490
 	}
491 491
 }
Please login to merge, or discard this patch.
functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,5 +2,5 @@
 block discarded – undo
2 2
 /**
3 3
  * Init our WordPress Theme.
4 4
  */
5
-require_once( __DIR__ . '/vendor/autoload.php' );
5
+require_once(__DIR__.'/vendor/autoload.php');
6 6
 \Classy\Classy::get_instance();
Please login to merge, or discard this patch.
header.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,4 +2,4 @@
 block discarded – undo
2 2
 /**
3 3
  * Theme header.
4 4
  */
5
-get_theme_framework()::render( 'layout.header' );
5
+get_theme_framework()::render('layout.header');
Please login to merge, or discard this patch.
footer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,4 +2,4 @@
 block discarded – undo
2 2
 /**
3 3
  * Theme footer.
4 4
  */
5
-get_theme_framework()::render( 'layout.footer' );
5
+get_theme_framework()::render('layout.footer');
Please login to merge, or discard this patch.
comments.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 global $post;
4 4
 
5
-$classypost = new \Classy\Models\Post( $post );
5
+$classypost = new \Classy\Models\Post($post);
6 6
 
7
-Classy\Classy::render( 'layout.comments', array( 'post' => $classypost ) );
7
+Classy\Classy::render('layout.comments', array('post' => $classypost));
Please login to merge, or discard this patch.
app/classes/models/user.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
 	 *
67 67
 	 * @param int $uid User id.
68 68
 	 */
69
-	public function __construct( $uid = null ) {
70
-		$this->ID = $this->verify_id( $uid );
69
+	public function __construct($uid = null) {
70
+		$this->ID = $this->verify_id($uid);
71 71
 
72 72
 		$this->init();
73 73
 	}
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	 *
80 80
 	 * @return int
81 81
 	 */
82
-	private function verify_id( $uid ) {
82
+	private function verify_id($uid) {
83 83
 		// @todo: Realize this method.
84 84
 		return $uid;
85 85
 	}
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	private function init() {
91 91
 		$this->object = $this->get_object();
92 92
 
93
-		$this->import( $this->object );
93
+		$this->import($this->object);
94 94
 
95 95
 		$this->setup_user_name();
96 96
 	}
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 	 * @return object
102 102
 	 */
103 103
 	private function get_object() {
104
-		return get_user_by( 'id', $this->ID );
104
+		return get_user_by('id', $this->ID);
105 105
 	}
106 106
 
107 107
 	/**
@@ -155,8 +155,8 @@  discard block
 block discarded – undo
155 155
 	 * @return string
156 156
 	 */
157 157
 	public function link() {
158
-		if ( ! $this->link ) {
159
-			$this->link = get_author_posts_url( $this->ID );
158
+		if (!$this->link) {
159
+			$this->link = get_author_posts_url($this->ID);
160 160
 		}
161 161
 
162 162
 		return $this->link;
@@ -167,8 +167,8 @@  discard block
 block discarded – undo
167 167
 	 */
168 168
 	private function setup_user_name() {
169 169
 		$this->name = 'Anonymous';
170
-		if ( isset( $this->object->first_name ) && isset( $this->object->last_name ) ) {
171
-			$this->name = $this->object->first_name . ' ' . $this->object->last_name;
170
+		if (isset($this->object->first_name) && isset($this->object->last_name)) {
171
+			$this->name = $this->object->first_name.' '.$this->object->last_name;
172 172
 		}
173 173
 
174 174
 		$this->display_name = $this->object->display_name;
Please login to merge, or discard this patch.
app/classes/view.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
 
30 30
 		$request = Hierarchy::get_current_request();
31 31
 
32
-		$file = Hierarchy::get_available_file( 'view', $request );
32
+		$file = Hierarchy::get_available_file('view', $request);
33 33
 
34
-		$view = self::get_blade_view( $file );
34
+		$view = self::get_blade_view($file);
35 35
 
36 36
 		return $view;
37 37
 
@@ -44,9 +44,9 @@  discard block
 block discarded – undo
44 44
 	 *
45 45
 	 * @return string
46 46
 	 */
47
-	public static function get_blade_view( $view ) {
47
+	public static function get_blade_view($view) {
48 48
 
49
-		return str_replace( '/', '.', $view );
49
+		return str_replace('/', '.', $view);
50 50
 
51 51
 	}
52 52
 
@@ -59,21 +59,21 @@  discard block
 block discarded – undo
59 59
 
60 60
 		$templates = array();
61 61
 
62
-		$files = (array) glob( CLASSY_THEME_PATH . '/' . self::$folder . '/*/*.blade.php' );
62
+		$files = (array) glob(CLASSY_THEME_PATH.'/'.self::$folder.'/*/*.blade.php');
63 63
 
64
-		foreach ( $files as $filename ) {
64
+		foreach ($files as $filename) {
65 65
 
66
-			if ( ! empty( $filename ) ) {
66
+			if (!empty($filename)) {
67 67
 
68
-				if ( ! preg_match( '/\{\{\-\-\s*Template Name:(.*)\s*\-\-\}\}/mi', file_get_contents( $filename ), $header ) ) { continue; }
68
+				if (!preg_match('/\{\{\-\-\s*Template Name:(.*)\s*\-\-\}\}/mi', file_get_contents($filename), $header)) { continue; }
69 69
 
70
-				$template_name = trim( $header[1] );
70
+				$template_name = trim($header[1]);
71 71
 
72
-				preg_match( '/\/([^\/]*)\.blade.php$/is', $filename, $filename_match );
72
+				preg_match('/\/([^\/]*)\.blade.php$/is', $filename, $filename_match);
73 73
 
74
-				$template_file = 'classy-' . $filename_match[1];
74
+				$template_file = 'classy-'.$filename_match[1];
75 75
 
76
-				$templates[ $template_file ] = $template_name;
76
+				$templates[$template_file] = $template_name;
77 77
 
78 78
 			}
79 79
 		}
Please login to merge, or discard this patch.
app/classes/appearance.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -12,13 +12,13 @@  discard block
 block discarded – undo
12 12
 	 */
13 13
 	public function __construct() {
14 14
 
15
-		add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) );
15
+		add_action('wp_enqueue_scripts', array($this, 'enqueue_styles'));
16 16
 
17
-		add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
17
+		add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'));
18 18
 
19
-		add_action( 'wp_print_scripts', array( $this, 'init_js_vars' ) );
19
+		add_action('wp_print_scripts', array($this, 'init_js_vars'));
20 20
 
21
-		add_action( 'after_setup_theme', array( $this, 'setup_theme' ) );
21
+		add_action('after_setup_theme', array($this, 'setup_theme'));
22 22
 
23 23
 	}
24 24
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	 */
28 28
 	public function enqueue_styles() {
29 29
 
30
-		wp_register_style( 'general_css', CLASSY_THEME_DIR . 'assets/css/general.css', array(), CLASSY_THEME_VERSION, 'all' );
30
+		wp_register_style('general_css', CLASSY_THEME_DIR.'assets/css/general.css', array(), CLASSY_THEME_VERSION, 'all');
31 31
 
32 32
 	}
33 33
 
@@ -36,13 +36,13 @@  discard block
 block discarded – undo
36 36
 	 */
37 37
 	public function enqueue_scripts() {
38 38
 
39
-		if ( 'production' === Classy::get_config_var( 'environment' ) ) {
39
+		if ('production' === Classy::get_config_var('environment')) {
40 40
 
41
-			wp_register_script( 'theme_scripts', CLASSY_THEME_DIR . 'assets/js/min/production.js', array( 'jquery' ), CLASSY_THEME_VERSION, true );
41
+			wp_register_script('theme_scripts', CLASSY_THEME_DIR.'assets/js/min/production.js', array('jquery'), CLASSY_THEME_VERSION, true);
42 42
 
43 43
 		} else {
44 44
 
45
-			wp_register_script( 'theme_scripts', CLASSY_THEME_DIR . 'assets/js/scripts.js', array( 'jquery' ), CLASSY_THEME_VERSION, true );
45
+			wp_register_script('theme_scripts', CLASSY_THEME_DIR.'assets/js/scripts.js', array('jquery'), CLASSY_THEME_VERSION, true);
46 46
 
47 47
 		}
48 48
 
@@ -54,10 +54,10 @@  discard block
 block discarded – undo
54 54
 	public function init_js_vars() {
55 55
 
56 56
 		$options = array(
57
-			'base_url'          => home_url( '' ),
58
-			'blog_url'          => home_url( 'archives/' ),
57
+			'base_url'          => home_url(''),
58
+			'blog_url'          => home_url('archives/'),
59 59
 			'template_dir'      => CLASSY_THEME_DIR,
60
-			'ajax_load_url'     => admin_url( 'admin-ajax.php' ),
60
+			'ajax_load_url'     => admin_url('admin-ajax.php'),
61 61
 			'is_mobile'         => (int) wp_is_mobile(),
62 62
 		);
63 63
 
@@ -85,12 +85,12 @@  discard block
 block discarded – undo
85 85
 		 * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
86 86
 		 */
87 87
 
88
-		add_theme_support( 'post-thumbnails' );
88
+		add_theme_support('post-thumbnails');
89 89
 
90 90
 		// This theme uses wp_nav_menu() in one location.
91 91
 		register_nav_menus(array(
92
-			'header-menu' => __( 'Header Menu', Classy::textdomain() ),
93
-			'footer-menu' => __( 'Footer Menu', Classy::textdomain() ),
92
+			'header-menu' => __('Header Menu', Classy::textdomain()),
93
+			'footer-menu' => __('Footer Menu', Classy::textdomain()),
94 94
 		));
95 95
 
96 96
 		/*
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,8 @@
 block discarded – undo
43 43
 		
44 44
 			wp_register_script( 'theme_plugins', THEME_DIR . 'assets/js/min/production.js', array( 'jquery' ), THEME_VERSION, true );
45 45
 		
46
-		} else {
46
+		}
47
+		else {
47 48
 			
48 49
 			wp_register_script( 'theme_plugins', THEME_DIR . 'assets/js/plugins.js', array( 'jquery' ), THEME_VERSION, true );
49 50
 
Please login to merge, or discard this patch.