Completed
Push — master ( 7733bc...b90e50 )
by Andrew
9s
created
app/classy/classy-view.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
 
24 24
 		$request = ClassyHierarchy::get_current_request();
25 25
 
26
-		$file = ClassyHierarchy::get_available_file( 'view', $request );
26
+		$file = ClassyHierarchy::get_available_file('view', $request);
27 27
 
28
-		$view = self::get_blade_view( $file );
28
+		$view = self::get_blade_view($file);
29 29
 
30 30
 		return $view;
31 31
 
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
 	 * @param  string $view
39 39
 	 * @return string
40 40
 	 */
41
-	public static function get_blade_view( $view ) {
41
+	public static function get_blade_view($view) {
42 42
 
43
-		return str_replace( '/', '.', $view );
43
+		return str_replace('/', '.', $view);
44 44
 
45 45
 	}
46 46
 
@@ -54,21 +54,21 @@  discard block
 block discarded – undo
54 54
 
55 55
 		$templates = array();
56 56
 
57
-		$files = (array) glob( THEME_PATH . '/' . self::$folder . '/*/*.blade.php' );
57
+		$files = (array) glob(THEME_PATH.'/'.self::$folder.'/*/*.blade.php');
58 58
 
59
-		foreach ( $files as $filename ) {
59
+		foreach ($files as $filename) {
60 60
 
61
-			if ( ! empty( $filename ) ) {
61
+			if (!empty($filename)) {
62 62
 
63
-				if ( ! preg_match( '/\{\{\-\-\s*Template Name:(.*)\s*\-\-\}\}/mi', file_get_contents( $filename ), $header ) ) { continue; }
63
+				if (!preg_match('/\{\{\-\-\s*Template Name:(.*)\s*\-\-\}\}/mi', file_get_contents($filename), $header)) { continue; }
64 64
 
65
-				$template_name = trim( $header[1] );
65
+				$template_name = trim($header[1]);
66 66
 
67
-				preg_match( '/\/([^\/]*)\.blade.php$/is', $filename, $filename_match );
67
+				preg_match('/\/([^\/]*)\.blade.php$/is', $filename, $filename_match);
68 68
 
69
-				$template_file = 'classy-' . $filename_match[1];
69
+				$template_file = 'classy-'.$filename_match[1];
70 70
 
71
-				$templates[ $template_file ] = $template_name;
71
+				$templates[$template_file] = $template_name;
72 72
 
73 73
 			}
74 74
 		}
Please login to merge, or discard this patch.
app/classy/classy-menu.php 2 patches
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -23,25 +23,25 @@  discard block
 block discarded – undo
23 23
 	 *
24 24
 	 * @param string $arg it can be menu id, slug or full name
25 25
 	 */
26
-	public function __construct( $arg = null ) {
26
+	public function __construct($arg = null) {
27 27
 
28
-		if ( is_numeric( $arg ) && 0 != $arg ) {
28
+		if (is_numeric($arg) && 0 != $arg) {
29 29
 
30
-			$menu_id = $this->check_menu_id( $arg );
30
+			$menu_id = $this->check_menu_id($arg);
31 31
 
32
-		} elseif ( is_string( $arg ) ) {
32
+		} elseif (is_string($arg)) {
33 33
 
34
-			$menu_id = $this->get_menu_id_by_name( $arg );
34
+			$menu_id = $this->get_menu_id_by_name($arg);
35 35
 
36 36
 		}
37 37
 
38
-		if ( ! isset( $menu_id ) ) {
38
+		if (!isset($menu_id)) {
39 39
 
40 40
 			$menu_id = $this->get_first_menu_id();
41 41
 
42 42
 		}
43 43
 
44
-		if ( $menu_id ) {
44
+		if ($menu_id) {
45 45
 
46 46
 			$this->ID = $menu_id;
47 47
 
@@ -60,22 +60,22 @@  discard block
 block discarded – undo
60 60
 
61 61
 		$_return = array();
62 62
 
63
-		$items = wp_get_nav_menu_items( $this->ID );
63
+		$items = wp_get_nav_menu_items($this->ID);
64 64
 
65
-		foreach ( $items as $item ) {
65
+		foreach ($items as $item) {
66 66
 
67
-			$_return[ $item->ID ] = new ClassyMenuItem( $item );
67
+			$_return[$item->ID] = new ClassyMenuItem($item);
68 68
 		}
69 69
 
70 70
 		// Apply nesting
71 71
 
72
-		foreach ( $_return as $item_id => $item ) {
72
+		foreach ($_return as $item_id => $item) {
73 73
 
74
-			if ( isset( $item->menu_item_parent ) && $item->menu_item_parent && isset( $_return[ $item->menu_item_parent ] ) ) {
74
+			if (isset($item->menu_item_parent) && $item->menu_item_parent && isset($_return[$item->menu_item_parent])) {
75 75
 
76
-				$_return[ $item->menu_item_parent ]->add_child( $item );
76
+				$_return[$item->menu_item_parent]->add_child($item);
77 77
 
78
-				unset( $_return[ $item_id ] );
78
+				unset($_return[$item_id]);
79 79
 
80 80
 			}
81 81
 		}
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
 	 */
92 92
 	protected function get_first_menu_id() {
93 93
 
94
-		$menus = get_terms( 'nav_menu', array( 'hide_empty' => true ) );
94
+		$menus = get_terms('nav_menu', array('hide_empty' => true));
95 95
 
96
-		if ( is_array( $menus ) && count( $menus ) ) {
96
+		if (is_array($menus) && count($menus)) {
97 97
 
98
-			if ( isset( $menus[0]->term_id ) ) {
98
+			if (isset($menus[0]->term_id)) {
99 99
 
100 100
 				return $menus[0]->term_id;
101 101
 
@@ -112,15 +112,15 @@  discard block
 block discarded – undo
112 112
 	 * @param  int $menu_id
113 113
 	 * @return int/boolean
114 114
 	 */
115
-	protected function check_menu_id( $menu_id ) {
115
+	protected function check_menu_id($menu_id) {
116 116
 
117
-		$menus = get_terms( 'nav_menu', array( 'hide_empty' => true ) );
117
+		$menus = get_terms('nav_menu', array('hide_empty' => true));
118 118
 
119
-		if ( is_array( $menus ) && count( $menus ) ) {
119
+		if (is_array($menus) && count($menus)) {
120 120
 
121
-			foreach ( $menus as $menu ) {
121
+			foreach ($menus as $menu) {
122 122
 
123
-				if ( $menu->term_id == $menu_id ) {
123
+				if ($menu->term_id == $menu_id) {
124 124
 
125 125
 					return $menu_id;
126 126
 
@@ -138,17 +138,17 @@  discard block
 block discarded – undo
138 138
 	 * @param  string $slug
139 139
 	 * @return int
140 140
 	 */
141
-	protected function get_menu_id_by_name( $slug = null ) {
141
+	protected function get_menu_id_by_name($slug = null) {
142 142
 
143
-		if ( $slug && is_string( $slug ) ) {
143
+		if ($slug && is_string($slug)) {
144 144
 
145
-			$menu_id = get_term_by( 'slug', $slug, 'nav_menu' );
145
+			$menu_id = get_term_by('slug', $slug, 'nav_menu');
146 146
 
147
-			if ( $menu_id ) { return $menu_id; }
147
+			if ($menu_id) { return $menu_id; }
148 148
 
149
-			$menu_id = get_term_by( 'name', $slug, 'nav_menu' );
149
+			$menu_id = get_term_by('name', $slug, 'nav_menu');
150 150
 
151
-			if ( $menu_id ) { return $menu_id; }
151
+			if ($menu_id) { return $menu_id; }
152 152
 		}
153 153
 
154 154
 		return false;
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,8 @@
 block discarded – undo
29 29
 
30 30
 			$menu_id = $this->check_menu_id( $arg );
31 31
 
32
-		} elseif ( is_string( $arg ) ) {
32
+		}
33
+		elseif ( is_string( $arg ) ) {
33 34
 
34 35
 			$menu_id = $this->get_menu_id_by_name( $arg );
35 36
 
Please login to merge, or discard this patch.
app/classy/classy-hierarchy.php 3 patches
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,9 +54,11 @@  discard block
 block discarded – undo
54 54
 
55 55
 		elseif ( is_paged() ) : return 'paged';
56 56
 
57
-		else :
57
+		else {
58
+			:
58 59
 
59 60
 			return 'index';
61
+		}
60 62
 
61 63
 		endif;
62 64
 
@@ -95,7 +97,8 @@  discard block
 block discarded – undo
95 97
 
96 98
 			return THEME_PATH . $folder . '/' . $view . '.blade.php';
97 99
 
98
-		} elseif ( 'scope' == $type ) {
100
+		}
101
+		elseif ( 'scope' == $type ) {
99 102
 
100 103
 			$folder = ClassyScope::$folder;
101 104
 
@@ -232,7 +235,8 @@  discard block
 block discarded – undo
232 235
 
233 236
 					list( $type, $subtype ) = explode( '/', $attachment->post_mime_type );
234 237
 
235
-				} else {
238
+				}
239
+				else {
236 240
 
237 241
 					list( $type, $subtype ) = array( $attachment->post_mime_type, '' );
238 242
 
@@ -343,9 +347,11 @@  discard block
 block discarded – undo
343 347
 
344 348
 			// Default
345 349
 
346
-		else :
350
+		else {
351
+			:
347 352
 
348 353
 			$views[] = $type;
354
+		}
349 355
 
350 356
 		endif;
351 357
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -131,7 +131,8 @@  discard block
 block discarded – undo
131 131
 	 *
132 132
 	 * @param  string $type view|scope
133 133
 	 * @param  string $type
134
-	 * @return array
134
+	 * @param string $page
135
+	 * @return string|false
135 136
 	 */
136 137
 	public static function get_available_file( $type = 'view', $page ) {
137 138
 
@@ -374,7 +375,7 @@  discard block
 block discarded – undo
374 375
 	/**
375 376
 	 * Returns classy template name or boolean if this is not classy template
376 377
 	 *
377
-	 * @return mixed
378
+	 * @return string|false
378 379
 	 */
379 380
 	public static function get_classy_template() {
380 381
 
Please login to merge, or discard this patch.
Spacing   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -20,39 +20,39 @@  discard block
 block discarded – undo
20 20
 	 */
21 21
 	protected static function check_request() {
22 22
 
23
-		if ( is_404() ) : return '404';
23
+		if (is_404()) : return '404';
24 24
 
25
-		elseif ( is_search() ) : return 'search';
25
+		elseif (is_search()) : return 'search';
26 26
 
27
-		elseif ( is_front_page() ) : return 'front-page';
27
+		elseif (is_front_page()) : return 'front-page';
28 28
 
29
-		elseif ( is_home() ) : return 'home';
29
+		elseif (is_home()) : return 'home';
30 30
 
31
-		elseif ( is_post_type_archive() ) : return 'post_type_archive';
31
+		elseif (is_post_type_archive()) : return 'post_type_archive';
32 32
 
33
-		elseif ( is_tax() ) : return 'taxonomy';
33
+		elseif (is_tax()) : return 'taxonomy';
34 34
 
35
-		elseif ( is_attachment() ) : return 'attachment';
35
+		elseif (is_attachment()) : return 'attachment';
36 36
 
37
-		elseif ( is_single() ) : return 'single';
37
+		elseif (is_single()) : return 'single';
38 38
 
39
-		elseif ( self::is_classy_template() ) : return 'classy-template';
39
+		elseif (self::is_classy_template()) : return 'classy-template';
40 40
 
41
-		elseif ( is_page() ) : return 'page';
41
+		elseif (is_page()) : return 'page';
42 42
 
43
-		elseif ( is_singular() ) : return 'singular';
43
+		elseif (is_singular()) : return 'singular';
44 44
 
45
-		elseif ( is_category() ) : return 'category';
45
+		elseif (is_category()) : return 'category';
46 46
 
47
-		elseif ( is_tag() ) : return 'tag';
47
+		elseif (is_tag()) : return 'tag';
48 48
 
49
-		elseif ( is_author() ) : return 'author';
49
+		elseif (is_author()) : return 'author';
50 50
 
51
-		elseif ( is_date() ) : return 'date';
51
+		elseif (is_date()) : return 'date';
52 52
 
53
-		elseif ( is_archive() ) : return 'archive';
53
+		elseif (is_archive()) : return 'archive';
54 54
 
55
-		elseif ( is_paged() ) : return 'paged';
55
+		elseif (is_paged()) : return 'paged';
56 56
 
57 57
 		else :
58 58
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 */
70 70
 	public static function get_current_request() {
71 71
 
72
-		if ( null === self::$current_request ) {
72
+		if (null === self::$current_request) {
73 73
 
74 74
 			self::$current_request = self::check_request();
75 75
 
@@ -87,21 +87,21 @@  discard block
 block discarded – undo
87 87
 	 * @param  string $view path to view ex: "post/archive"
88 88
 	 * @return string           full fule path
89 89
 	 */
90
-	public static function get_file_path( $type = 'view', $view ) {
90
+	public static function get_file_path($type = 'view', $view) {
91 91
 
92
-		$view = str_replace( '.', '/', $view );
92
+		$view = str_replace('.', '/', $view);
93 93
 
94
-		if ( 'view' == $type ) {
94
+		if ('view' == $type) {
95 95
 
96 96
 			$folder = ClassyView::$folder;
97 97
 
98
-			return THEME_PATH . $folder . '/' . $view . '.blade.php';
98
+			return THEME_PATH.$folder.'/'.$view.'.blade.php';
99 99
 
100
-		} elseif ( 'scope' == $type ) {
100
+		} elseif ('scope' == $type) {
101 101
 
102 102
 			$folder = ClassyScope::$folder;
103 103
 
104
-			return THEME_PATH . $folder . '/' . $view . '.php';
104
+			return THEME_PATH.$folder.'/'.$view.'.php';
105 105
 
106 106
 		}
107 107
 
@@ -115,13 +115,13 @@  discard block
 block discarded – undo
115 115
 	 * @param  string $file in blade path format, ex: layout|header
116 116
 	 * @return boolean true|false
117 117
 	 */
118
-	public static function file_exists( $type = 'view', $file ) {
118
+	public static function file_exists($type = 'view', $file) {
119 119
 
120
-		$file = str_replace( '.', '/', $file );
120
+		$file = str_replace('.', '/', $file);
121 121
 
122
-		$file_path = self::get_file_path( $type, $file );
122
+		$file_path = self::get_file_path($type, $file);
123 123
 
124
-		return file_exists( $file_path );
124
+		return file_exists($file_path);
125 125
 
126 126
 	}
127 127
 
@@ -133,13 +133,13 @@  discard block
 block discarded – undo
133 133
 	 * @param  string $type
134 134
 	 * @return array
135 135
 	 */
136
-	public static function get_available_file( $type = 'view', $page ) {
136
+	public static function get_available_file($type = 'view', $page) {
137 137
 
138
-		$views = self::get_request_hierarchy_list( $page );
138
+		$views = self::get_request_hierarchy_list($page);
139 139
 
140
-		foreach ( $views as $view ) {
140
+		foreach ($views as $view) {
141 141
 
142
-			if ( self::file_exists( $type, $view ) ) :
142
+			if (self::file_exists($type, $view)) :
143 143
 
144 144
 				return $view;
145 145
 
@@ -158,43 +158,43 @@  discard block
 block discarded – undo
158 158
 	 * @param  string $type
159 159
 	 * @return array
160 160
 	 */
161
-	private static function get_request_hierarchy_list( $type ) {
161
+	private static function get_request_hierarchy_list($type) {
162 162
 
163 163
 		$views = array();
164 164
 
165 165
 		// Home
166 166
 
167
-		if ( 'home' == $type ) :
167
+		if ('home' == $type) :
168 168
 
169 169
 			$views[] = 'home';
170 170
 
171 171
 			// Single
172 172
 
173
-		elseif ( 'single' == $type ) :
173
+		elseif ('single' == $type) :
174 174
 
175 175
 			$post_type = get_post_type();
176 176
 
177
-			$views[] = $post_type . '.single';
177
+			$views[] = $post_type.'.single';
178 178
 
179 179
 			$views[] = 'single';
180 180
 
181 181
 			// Post type
182 182
 
183
-		elseif ( 'post_type_archive' == $type ) :
183
+		elseif ('post_type_archive' == $type) :
184 184
 
185 185
 			$post_type = get_post_type();
186 186
 
187
-			$views[] = $post_type . '.archive';
187
+			$views[] = $post_type.'.archive';
188 188
 
189 189
 			$views[] = 'archive';
190 190
 
191 191
 			// Taxonomy
192 192
 
193
-		elseif ( 'taxonomy' == $type ) :
193
+		elseif ('taxonomy' == $type) :
194 194
 
195 195
 			$term = get_queried_object();
196 196
 
197
-			if ( ! empty( $term->slug ) ) {
197
+			if (!empty($term->slug)) {
198 198
 
199 199
 				$taxonomy = $term->taxonomy;
200 200
 
@@ -209,11 +209,11 @@  discard block
 block discarded – undo
209 209
 
210 210
 			// Category
211 211
 
212
-		elseif ( 'category' == $type ) :
212
+		elseif ('category' == $type) :
213 213
 
214 214
 			$category = get_queried_object();
215 215
 
216
-			if ( ! empty( $category->slug ) ) {
216
+			if (!empty($category->slug)) {
217 217
 				$views[] = "category.{$category->slug}";
218 218
 				$views[] = "category.{$category->term_id}";
219 219
 			}
@@ -224,23 +224,23 @@  discard block
 block discarded – undo
224 224
 
225 225
 			// Attachment
226 226
 
227
-		elseif ( 'attachment' == $type ) :
227
+		elseif ('attachment' == $type) :
228 228
 
229 229
 			$attachment = get_queried_object();
230 230
 
231
-			if ( $attachment ) {
231
+			if ($attachment) {
232 232
 
233
-				if ( false !== strpos( $attachment->post_mime_type, '/' ) ) {
233
+				if (false !== strpos($attachment->post_mime_type, '/')) {
234 234
 
235
-					list( $type, $subtype ) = explode( '/', $attachment->post_mime_type );
235
+					list($type, $subtype) = explode('/', $attachment->post_mime_type);
236 236
 
237 237
 				} else {
238 238
 
239
-					list( $type, $subtype ) = array( $attachment->post_mime_type, '' );
239
+					list($type, $subtype) = array($attachment->post_mime_type, '');
240 240
 
241 241
 				}
242 242
 
243
-				if ( ! empty( $subtype ) ) {
243
+				if (!empty($subtype)) {
244 244
 					$views[] = "attachment.{$type}.{$subtype}";
245 245
 					$views[] = "attachment.{$subtype}";
246 246
 
@@ -259,11 +259,11 @@  discard block
 block discarded – undo
259 259
 
260 260
 			// Tag
261 261
 
262
-		elseif ( 'tag' == $type ) :
262
+		elseif ('tag' == $type) :
263 263
 
264 264
 			$tag = get_queried_object();
265 265
 
266
-			if ( ! empty( $tag->slug ) ) {
266
+			if (!empty($tag->slug)) {
267 267
 				$views[] = "post.tag.{$tag->slug}";
268 268
 				$views[] = "post.tag.{$tag->term_id}";
269 269
 
@@ -276,11 +276,11 @@  discard block
 block discarded – undo
276 276
 
277 277
 			// Author
278 278
 
279
-		elseif ( 'author' == $type ) :
279
+		elseif ('author' == $type) :
280 280
 
281 281
 			$author = get_queried_object();
282 282
 
283
-			if ( $author instanceof WP_User ) {
283
+			if ($author instanceof WP_User) {
284 284
 				$views[] = "post.author.{$author->user_nicename}";
285 285
 				$views[] = "post.author.{$author->ID}";
286 286
 
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
 
295 295
 			// Front Page
296 296
 
297
-		elseif ( 'front-page' == $type ) :
297
+		elseif ('front-page' == $type) :
298 298
 
299 299
 			$views[] = 'front-page.front-page';
300 300
 			$views[] = 'front-page';
@@ -302,43 +302,43 @@  discard block
 block discarded – undo
302 302
 			$views[] = 'home.home';
303 303
 			$views[] = 'home';
304 304
 
305
-			$views = array_merge( $views, self::get_request_hierarchy_list( 'post_type_archive' ) );
305
+			$views = array_merge($views, self::get_request_hierarchy_list('post_type_archive'));
306 306
 
307 307
 			// Page
308 308
 
309
-		elseif ( 'classy-template' == $type ) :
309
+		elseif ('classy-template' == $type) :
310 310
 
311 311
 			$template = self::get_classy_template();
312 312
 
313 313
 			$views[] = $template;
314 314
 
315
-			$views[] = 'page.' . $template;
315
+			$views[] = 'page.'.$template;
316 316
 
317
-			$views[] = 'template.' . $template;
317
+			$views[] = 'template.'.$template;
318 318
 
319 319
 			$views[] = 'page';
320 320
 
321
-		elseif ( 'page' == $type ) :
321
+		elseif ('page' == $type) :
322 322
 
323 323
 			$id = get_queried_object_id();
324 324
 
325
-			$pagename = get_query_var( 'pagename' );
325
+			$pagename = get_query_var('pagename');
326 326
 
327
-			if ( ! $pagename && $id ) {
327
+			if (!$pagename && $id) {
328 328
 				// If a static page is set as the front page, $pagename will not be set. Retrieve it from the queried object
329 329
 				$post = get_queried_object();
330 330
 
331
-				if ( $post ) {
331
+				if ($post) {
332 332
 					$pagename = $post->post_name;
333 333
 				}
334 334
 			}
335 335
 
336
-			if ( $pagename ) {
337
-				$views[] = 'page.' . $pagename;
336
+			if ($pagename) {
337
+				$views[] = 'page.'.$pagename;
338 338
 			}
339 339
 
340
-			if ( $id ) {
341
-				$views[] = 'page.' . $id;
340
+			if ($id) {
341
+				$views[] = 'page.'.$id;
342 342
 			}
343 343
 
344 344
 			$views[] = 'page.page';
@@ -380,9 +380,9 @@  discard block
 block discarded – undo
380 380
 
381 381
 		$template_slug = get_page_template_slug();
382 382
 
383
-		preg_match( '/classy\-(.*)/', $template_slug, $matches );
383
+		preg_match('/classy\-(.*)/', $template_slug, $matches);
384 384
 
385
-		if ( ! empty( $matches ) && isset( $matches[1] ) ) { return $matches[1]; }
385
+		if (!empty($matches) && isset($matches[1])) { return $matches[1]; }
386 386
 
387 387
 		return false;
388 388
 
Please login to merge, or discard this patch.
app/classy/classy-menu-item.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -41,11 +41,11 @@  discard block
 block discarded – undo
41 41
 	 *
42 42
 	 * @param WP_Post $item
43 43
 	 */
44
-	public function __construct( $item ) {
44
+	public function __construct($item) {
45 45
 
46
-		if ( is_a( $item, 'WP_Post' ) ) {
46
+		if (is_a($item, 'WP_Post')) {
47 47
 
48
-			$this->import( $item );
48
+			$this->import($item);
49 49
 			$this->filter_classes();
50 50
 
51 51
 		}
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	 */
103 103
 	public function get_classes() {
104 104
 
105
-		return implode( ' ', $this->classes );
105
+		return implode(' ', $this->classes);
106 106
 
107 107
 	}
108 108
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	 *
112 112
 	 * @param string $class_name
113 113
 	 */
114
-	public function add_class( $class_name ) {
114
+	public function add_class($class_name) {
115 115
 
116 116
 		$this->classes[] = $class_name;
117 117
 
@@ -122,17 +122,17 @@  discard block
 block discarded – undo
122 122
 	 *
123 123
 	 * @param ClassyMenuItem $item
124 124
 	 */
125
-	public function add_child( $item ) {
125
+	public function add_child($item) {
126 126
 
127
-		if ( ! $this->has_child ) {
128
-			$this->add_class( 'menu-item-has-children' );
127
+		if (!$this->has_child) {
128
+			$this->add_class('menu-item-has-children');
129 129
 			$this->has_child = true;
130 130
 		}
131 131
 
132 132
 		$this->children[] = $item;
133 133
 		$item->level = $this->level + 1;
134 134
 
135
-		if ( $item->children ) {
135
+		if ($item->children) {
136 136
 			$this->update_child_levels();
137 137
 		}
138 138
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 	 */
146 146
 	protected function filter_classes() {
147 147
 
148
-		$this->classes = apply_filters( 'nav_menu_css_class', $this->classes, $this );
148
+		$this->classes = apply_filters('nav_menu_css_class', $this->classes, $this);
149 149
 
150 150
 	}
151 151
 
@@ -156,9 +156,9 @@  discard block
 block discarded – undo
156 156
 	 */
157 157
 	protected function update_child_levels() {
158 158
 
159
-		if ( is_array( $this->children ) ) {
159
+		if (is_array($this->children)) {
160 160
 
161
-			foreach ( $this->children as $child ) {
161
+			foreach ($this->children as $child) {
162 162
 				$child->level = $this->level + 1;
163 163
 				$child->update_child_levels();
164 164
 			}
Please login to merge, or discard this patch.
app/classy/classy-config.php 2 patches
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 	 */
17 17
 	private static function get_allowed_variables() {
18 18
 
19
-		return array( 'environment', 'textdomain', 'post_types', 'taxonomies', 'post_formats', 'sidebars' );;
19
+		return array('environment', 'textdomain', 'post_types', 'taxonomies', 'post_formats', 'sidebars'); ;
20 20
 
21 21
 	}
22 22
 
@@ -27,30 +27,30 @@  discard block
 block discarded – undo
27 27
 	 */
28 28
 	public static function get_vars() {
29 29
 
30
-		if ( null === self::$vars ) {
30
+		if (null === self::$vars) {
31 31
 
32 32
 			// Check for a theme config
33
-			$config_file = THEME_FRAMEWORK_PATH . 'config.php';
33
+			$config_file = THEME_FRAMEWORK_PATH.'config.php';
34 34
 
35
-			if ( file_exists( $config_file ) ) {
35
+			if (file_exists($config_file)) {
36 36
 
37
-				require_once THEME_FRAMEWORK_PATH . 'config.php';
37
+				require_once THEME_FRAMEWORK_PATH.'config.php';
38 38
 
39 39
 				$vars = self::get_allowed_variables();
40 40
 
41
-				foreach ( $vars as $var ) {
41
+				foreach ($vars as $var) {
42 42
 
43
-					if ( isset( $$var ) ) {
43
+					if (isset($$var)) {
44 44
 
45
-						self::$vars[ $var ] = $$var;
45
+						self::$vars[$var] = $$var;
46 46
 
47
-						unset( $$var ); // We don't require it anymore
47
+						unset($$var); // We don't require it anymore
48 48
 
49 49
 					}
50 50
 				}
51 51
 			} else {
52 52
 
53
-				die( 'There is no config file in ' . THEME . ' custom/config.php' );
53
+				die('There is no config file in '.THEME.' custom/config.php');
54 54
 
55 55
 			}
56 56
 		}
@@ -69,16 +69,16 @@  discard block
 block discarded – undo
69 69
 		$vars = self::get_vars();
70 70
 
71 71
 		// Init Post Types
72
-		if ( isset( $vars['post_types'] ) ) { self::init_post_types( $vars['post_types'] ); }
72
+		if (isset($vars['post_types'])) { self::init_post_types($vars['post_types']); }
73 73
 
74 74
 		// Init Taxonomies
75
-		if ( isset( $vars['taxonomies'] ) ) { self::init_taxonomies( $vars['taxonomies'] ); }
75
+		if (isset($vars['taxonomies'])) { self::init_taxonomies($vars['taxonomies']); }
76 76
 
77 77
 		// Init Post Formats
78
-		if ( isset( $vars['post_formats'] ) ) { self::init_post_formats( $vars['post_formats'] ); }
78
+		if (isset($vars['post_formats'])) { self::init_post_formats($vars['post_formats']); }
79 79
 
80 80
 		// Init Sidebars
81
-		if ( isset( $vars['sidebars'] ) ) { self::init_sidebars( $vars['sidebars'] ); }
81
+		if (isset($vars['sidebars'])) { self::init_sidebars($vars['sidebars']); }
82 82
 
83 83
 	}
84 84
 
@@ -89,13 +89,13 @@  discard block
 block discarded – undo
89 89
 	 *
90 90
 	 * @param  array $post_types
91 91
 	 */
92
-	private static function init_post_types( $post_types ) {
92
+	private static function init_post_types($post_types) {
93 93
 
94
-		if ( is_array( $post_types ) ) {
94
+		if (is_array($post_types)) {
95 95
 
96
-			foreach ( $post_types as $type => $options ) {
96
+			foreach ($post_types as $type => $options) {
97 97
 
98
-				self::add_post_type( $type, $options['config'], $options['singular'], $options['multiple'] );
98
+				self::add_post_type($type, $options['config'], $options['singular'], $options['multiple']);
99 99
 
100 100
 			}
101 101
 		}
@@ -111,28 +111,28 @@  discard block
 block discarded – undo
111 111
 	 * @param string $singular
112 112
 	 * @param string $multiple
113 113
 	 */
114
-	private static function add_post_type( $name, $config, $singular = 'Entry', $multiple = 'Entries' ) {
114
+	private static function add_post_type($name, $config, $singular = 'Entry', $multiple = 'Entries') {
115 115
 
116 116
 		$domain = Classy::textdomain();
117 117
 
118
-		if ( ! isset( $config['labels'] ) ) {
118
+		if (!isset($config['labels'])) {
119 119
 
120 120
 			$config['labels'] = array(
121
-				'name' => __( $multiple, $domain ),
122
-				'singular_name' => __( $singular, $domain ),
123
-				'not_found' => __( 'No ' . $multiple . ' Found', $domain ),
124
-				'not_found_in_trash' => __( 'No ' . $multiple . ' found in Trash', $domain ),
125
-				'edit_item' => __( 'Edit ', $singular, $domain ),
126
-				'search_items' => __( 'Search ' . $multiple, $domain ),
127
-				'view_item' => __( 'View ', $singular, $domain ),
128
-				'new_item' => __( 'New ' . $singular, $domain ),
129
-				'add_new' => __( 'Add New', $domain ),
130
-				'add_new_item' => __( 'Add New ' . $singular, $domain ),
121
+				'name' => __($multiple, $domain),
122
+				'singular_name' => __($singular, $domain),
123
+				'not_found' => __('No '.$multiple.' Found', $domain),
124
+				'not_found_in_trash' => __('No '.$multiple.' found in Trash', $domain),
125
+				'edit_item' => __('Edit ', $singular, $domain),
126
+				'search_items' => __('Search '.$multiple, $domain),
127
+				'view_item' => __('View ', $singular, $domain),
128
+				'new_item' => __('New '.$singular, $domain),
129
+				'add_new' => __('Add New', $domain),
130
+				'add_new_item' => __('Add New '.$singular, $domain),
131 131
 			);
132 132
 
133 133
 		}
134 134
 
135
-		register_post_type( $name, $config );
135
+		register_post_type($name, $config);
136 136
 
137 137
 	}
138 138
 
@@ -141,13 +141,13 @@  discard block
 block discarded – undo
141 141
 	 *
142 142
 	 * @param  array $taxonomies
143 143
 	 */
144
-	private static function init_taxonomies( $taxonomies ) {
144
+	private static function init_taxonomies($taxonomies) {
145 145
 
146
-		if ( is_array( $taxonomies ) ) {
146
+		if (is_array($taxonomies)) {
147 147
 
148
-			foreach ( $taxonomies as $type => $options ) {
148
+			foreach ($taxonomies as $type => $options) {
149 149
 
150
-				self::add_taxonomy( $type, $options['for'], $options['config'], $options['singular'], $options['multiple'] );
150
+				self::add_taxonomy($type, $options['for'], $options['config'], $options['singular'], $options['multiple']);
151 151
 
152 152
 			}
153 153
 		}
@@ -163,29 +163,29 @@  discard block
 block discarded – undo
163 163
 	 * @param string $singular
164 164
 	 * @param string $multiple
165 165
 	 */
166
-	private static function add_taxonomy( $name, $object_type, $config, $singular = 'Entry', $multiple = 'Entries' ) {
166
+	private static function add_taxonomy($name, $object_type, $config, $singular = 'Entry', $multiple = 'Entries') {
167 167
 
168 168
 		$domain = Classy::textdomain();
169 169
 
170
-		if ( ! isset( $config['labels'] ) ) {
170
+		if (!isset($config['labels'])) {
171 171
 
172 172
 			$config['labels'] = array(
173
-				'name' => __( $multiple, $domain ),
174
-				'singular_name' => __( $singular, $domain ),
175
-				'search_items' => __( 'Search ' . $multiple, $domain ),
176
-				'all_items' => __( 'All ' . $multiple, $domain ),
177
-				'parent_item' => __( 'Parent ' . $singular, $domain ),
178
-				'parent_item_colon' => __( 'Parent ' . $singular . ':', $domain ),
179
-				'edit_item' => __( 'Edit ' . $singular, $domain ),
180
-				'update_item' => __( 'Update ' . $singular, $domain ),
181
-				'add_new_item' => __( 'Add New ' . $singular, $domain ),
182
-				'new_item_name' => __( 'New ' . $singular . ' Name', $domain ),
183
-				'menu_name' => __( $singular, $domain ),
173
+				'name' => __($multiple, $domain),
174
+				'singular_name' => __($singular, $domain),
175
+				'search_items' => __('Search '.$multiple, $domain),
176
+				'all_items' => __('All '.$multiple, $domain),
177
+				'parent_item' => __('Parent '.$singular, $domain),
178
+				'parent_item_colon' => __('Parent '.$singular.':', $domain),
179
+				'edit_item' => __('Edit '.$singular, $domain),
180
+				'update_item' => __('Update '.$singular, $domain),
181
+				'add_new_item' => __('Add New '.$singular, $domain),
182
+				'new_item_name' => __('New '.$singular.' Name', $domain),
183
+				'menu_name' => __($singular, $domain),
184 184
 			);
185 185
 
186 186
 		}
187 187
 
188
-		register_taxonomy( $name, $object_type, $config );
188
+		register_taxonomy($name, $object_type, $config);
189 189
 
190 190
 	}
191 191
 
@@ -194,11 +194,11 @@  discard block
 block discarded – undo
194 194
 	 *
195 195
 	 * @param  array $post_formats
196 196
 	 */
197
-	private static function init_post_formats( $post_formats ) {
197
+	private static function init_post_formats($post_formats) {
198 198
 
199
-		if ( is_array( $post_formats ) ) {
199
+		if (is_array($post_formats)) {
200 200
 
201
-			add_theme_support( 'post-formats', $post_formats );
201
+			add_theme_support('post-formats', $post_formats);
202 202
 
203 203
 		}
204 204
 
@@ -209,19 +209,19 @@  discard block
 block discarded – undo
209 209
 	 *
210 210
 	 * @param  array $sidebars
211 211
 	 */
212
-	private static function init_sidebars( $sidebars ) {
212
+	private static function init_sidebars($sidebars) {
213 213
 
214 214
 		$domain = Classy::textdomain();
215 215
 
216
-		if ( is_array( $sidebars ) ) {
216
+		if (is_array($sidebars)) {
217 217
 
218
-			foreach ( $sidebars as $id => $title ) {
218
+			foreach ($sidebars as $id => $title) {
219 219
 
220 220
 				register_sidebar(
221 221
 					array(
222 222
 						'id' => $id,
223
-						'name' => __( $title, $domain ),
224
-						'description' => __( $title, $domain ),
223
+						'name' => __($title, $domain),
224
+						'description' => __($title, $domain),
225 225
 						'before_widget' => '<div id="%1$s" class="widget %2$s"><div class="widget-inner">',
226 226
 						'after_widget' => '</div></div>',
227 227
 						'before_title' => '<h3>',
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,8 @@
 block discarded – undo
48 48
 
49 49
 					}
50 50
 				}
51
-			} else {
51
+			}
52
+			else {
52 53
 
53 54
 				die( 'There is no config file in ' . THEME . ' custom/config.php' );
54 55
 
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 ClassyPost( $post );
5
+$classypost = new ClassyPost($post);
6 6
 
7
-Classy::render( 'layout.comments', array( 'post' => $classypost ) );
7
+Classy::render('layout.comments', array('post' => $classypost));
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
@@ -1,1 +1,1 @@
 block discarded – undo
1
-<?php Classy::render( 'layout.header' ); ?>
2 1
\ No newline at end of file
2
+<?php Classy::render('layout.header'); ?>
3 3
\ No newline at end of file
Please login to merge, or discard this patch.
app/models/classy-image.php 2 patches
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,8 @@  discard block
 block discarded – undo
19 19
 
20 20
 			$this->ID = $pid;
21 21
 
22
-		} else {
22
+		}
23
+		else {
23 24
 
24 25
 			$this->ID = 0;
25 26
 
@@ -50,7 +51,8 @@  discard block
 block discarded – undo
50 51
 
51 52
 			return $thumb[0];
52 53
 
53
-		} else {
54
+		}
55
+		else {
54 56
 
55 57
 			return self::get_default_image();
56 58
 
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@  discard block
 block discarded – undo
12 12
 	 * Main constructor function. Requires image id
13 13
 	 * @param int $pid
14 14
 	 */
15
-	public function __construct( $pid = null ) {
15
+	public function __construct($pid = null) {
16 16
 
17 17
 		// Checks if image with this id exists
18
-		if ( null !== $pid && wp_get_attachment_image_src( $pid ) ) {
18
+		if (null !== $pid && wp_get_attachment_image_src($pid)) {
19 19
 
20 20
 			$this->ID = $pid;
21 21
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 	public static function get_default_image() {
34 34
 
35 35
 		// You can put here any url
36
-		return THEME_DIR . '/assets/noimage.png';
36
+		return THEME_DIR.'/assets/noimage.png';
37 37
 
38 38
 	}
39 39
 
@@ -42,11 +42,11 @@  discard block
 block discarded – undo
42 42
 	 * @param  string $size
43 43
 	 * @return string
44 44
 	 */
45
-	public function src( $size = 'medium' ) {
45
+	public function src($size = 'medium') {
46 46
 
47
-		if ( $this->ID ) {
47
+		if ($this->ID) {
48 48
 
49
-			$thumb = wp_get_attachment_image_src( $this->ID, $size );
49
+			$thumb = wp_get_attachment_image_src($this->ID, $size);
50 50
 
51 51
 			return $thumb[0];
52 52
 
Please login to merge, or discard this patch.