Passed
Push — master ( a9e365...6c4de8 )
by Paul
02:25
created
helpers.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
  *
6 6
  * @return mixed
7 7
  */
8
-function pollux_get_post_meta( $metaKey, array $args = [] ) {
8
+function pollux_get_post_meta( $metaKey, array $args = [] )
9
+{
9 10
 	return \GeminiLabs\Pollux\Facades\PostMeta::get( $metaKey, $args );
10 11
 }
11 12
 
@@ -14,6 +15,7 @@  discard block
 block discarded – undo
14 15
  *
15 16
  * @return mixed
16 17
  */
17
-function pollux_get_option( $group, $key = false, $fallback = '' ) {
18
+function pollux_get_option( $group, $key = false, $fallback = '' )
19
+{
18 20
 	return \GeminiLabs\Pollux\Facades\SiteMeta::get( $group, $key, $fallback );
19 21
 }
Please login to merge, or discard this patch.
autoload.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,9 +13,13 @@
 block discarded – undo
13 13
 	];
14 14
 	foreach( $namespaces as $prefix => $base_dir ) {
15 15
 		$len = strlen( $prefix );
16
-		if( strncmp( $prefix, $class, $len ) !== 0 )continue;
16
+		if( strncmp( $prefix, $class, $len ) !== 0 ) {
17
+			continue;
18
+		}
17 19
 		$file = $base_dir . str_replace( '\\', '/', substr( $class, $len ) ) . '.php';
18
-		if( !file_exists( $file ) )continue;
20
+		if( !file_exists( $file ) ) {
21
+			continue;
22
+		}
19 23
 		require $file;
20 24
 		break;
21 25
 	}
Please login to merge, or discard this patch.
src/AliasLoader.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,8 @@
 block discarded – undo
31 31
 	}
32 32
 
33 33
 	private function __clone()
34
-	{}
34
+	{
35
+}
35 36
 
36 37
 	/**
37 38
 	 * Get or create the singleton alias loader instance.
Please login to merge, or discard this patch.
src/Controller.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,9 @@  discard block
 block discarded – undo
23 23
 	 */
24 24
 	public function filterWordPressFooter( $text )
25 25
 	{
26
-		if( $this->app->config['remove_wordpress_footer'] )return;
26
+		if( $this->app->config['remove_wordpress_footer'] ) {
27
+			return;
28
+		}
27 29
 		return $text;
28 30
 	}
29 31
 
@@ -64,7 +66,9 @@  discard block
 block discarded – undo
64 66
 	 */
65 67
 	public function removeDashboardWidgets()
66 68
 	{
67
-		if( !$this->app->config['remove_dashboard_widgets'] )return;
69
+		if( !$this->app->config['remove_dashboard_widgets'] ) {
70
+			return;
71
+		}
68 72
 		$widgets = apply_filters( 'pollux/dashoard/widgets', [
69 73
 			'dashboard_primary',
70 74
 			'dashboard_quick_press',
@@ -80,7 +84,9 @@  discard block
 block discarded – undo
80 84
 	 */
81 85
 	public function removeWordPressMenu()
82 86
 	{
83
-		if( !$this->app->config['remove_wordpress_menu'] )return;
87
+		if( !$this->app->config['remove_wordpress_menu'] ) {
88
+			return;
89
+		}
84 90
 		global $wp_admin_bar;
85 91
 		$wp_admin_bar->remove_menu( 'wp-logo' );
86 92
 	}
Please login to merge, or discard this patch.
src/Application.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,8 @@
 block discarded – undo
31 31
 			'name' => 'Plugin Name',
32 32
 			'version' => 'Version',
33 33
 		), 'plugin' );
34
-		array_walk( $data, function( $value, $key ) {
34
+		array_walk( $data, function( $value, $key )
35
+		{
35 36
 			$this->$key = $value;
36 37
 		});
37 38
 	}
Please login to merge, or discard this patch.
src/GateKeeper.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,9 @@
 block discarded – undo
14 14
 
15 15
 	public function __construct( $plugin )
16 16
 	{
17
-		if( $this->proceed() )return;
17
+		if( $this->proceed() ) {
18
+			return;
19
+		}
18 20
 
19 21
 		$this->plugin = $plugin;
20 22
 
Please login to merge, or discard this patch.
src/PostMeta.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,9 @@
 block discarded – undo
12 12
 	 */
13 13
 	public function get( $metaKey, array $args = [] )
14 14
 	{
15
-		if( empty( $metaKey ))return;
15
+		if( empty( $metaKey )) {
16
+			return;
17
+		}
16 18
 
17 19
 		$args = $this->normalize( $args );
18 20
 		$metaKey = $this->buildMetaKey( $metaKey, $args['prefix'] );
Please login to merge, or discard this patch.
src/MetaBox.php 1 patch
Braces   +17 added lines, -8 removed lines patch added patch discarded remove patch
@@ -59,7 +59,8 @@  discard block
 block discarded – undo
59 59
 	 */
60 60
 	public function verifyMetaBoxCondition( array $conditions )
61 61
 	{
62
-		array_walk( $conditions, function( &$value, $key ) {
62
+		array_walk( $conditions, function( &$value, $key )
63
+		{
63 64
 			$method = $this->app->buildMethodName( $key, 'validate' );
64 65
 			$value = method_exists( $this, $method )
65 66
 				? $this->$method( $value )
@@ -70,9 +71,12 @@  discard block
 block discarded – undo
70 71
 
71 72
 	protected function addInstructions()
72 73
 	{
73
-		if( !count( array_filter( $this->metaboxes, function( $metabox ) {
74
+		if( !count( array_filter( $this->metaboxes, function( $metabox )
75
+		{
74 76
 			return $this->isVisible( false, $metabox );
75
-		})))return;
77
+		}))) {
78
+			return;
79
+		}
76 80
 		$this->metaboxes[] = [
77 81
 			'id' => 'infodiv',
78 82
 			'post_types' => $this->getPostTypes(),
@@ -91,8 +95,10 @@  discard block
 block discarded – undo
91 95
 	 */
92 96
 	protected function generateInstructions()
93 97
 	{
94
-		return array_reduce( $this->getInstructions(), function( $html, $metabox ) {
95
-			$fields = array_reduce( array_column( $metabox['fields'], 'slug' ), function( $html, $slug ) use( $metabox ) {
98
+		return array_reduce( $this->getInstructions(), function( $html, $metabox )
99
+		{
100
+			$fields = array_reduce( array_column( $metabox['fields'], 'slug' ), function( $html, $slug ) use( $metabox )
101
+			{
96 102
 				$hook = sprintf( 'pollux/%s/instruction', $this->getClassname() );
97 103
 				return $html . apply_filters( $hook, "PostMeta::get('{$slug}');", $slug, $metabox['slug'] ) . PHP_EOL;
98 104
 			});
@@ -108,7 +114,8 @@  discard block
 block discarded – undo
108 114
 	 */
109 115
 	protected function getInstructions()
110 116
 	{
111
-		return array_filter( $this->metaboxes, function( $metabox ) {
117
+		return array_filter( $this->metaboxes, function( $metabox )
118
+		{
112 119
 			return $this->verifyMetaBoxCondition( $metabox['condition'] )
113 120
 				&& $this->hasPostType( $metabox );
114 121
 		});
@@ -178,7 +185,8 @@  discard block
 block discarded – undo
178 185
 			foreach( $conditions as $key ) {
179 186
 				$conditions[str_replace( '!', '', $key )] = substr( $key, 0, 1 ) == '!' ? 0 : 1;
180 187
 			}
181
-			$conditions = array_filter( $conditions, function( $key ) {
188
+			$conditions = array_filter( $conditions, function( $key )
189
+			{
182 190
 				return !is_numeric( $key );
183 191
 			}, ARRAY_FILTER_USE_KEY );
184 192
 		}
@@ -194,7 +202,8 @@  discard block
 block discarded – undo
194 202
 	 */
195 203
 	protected function normalizeFields( array $fields, array $data, $parentId )
196 204
 	{
197
-		return array_map( function( $id, $field ) use( $parentId ) {
205
+		return array_map( function( $id, $field ) use( $parentId )
206
+		{
198 207
 			$defaults =  [
199 208
 				'id' => $id,
200 209
 				'field_name' => '',
Please login to merge, or discard this patch.
src/PostType.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,8 @@  discard block
 block discarded – undo
54 54
 
55 55
 		foreach( $this->types as $type => $args ) {
56 56
 			add_action( "manage_{$type}_posts_custom_column", [$this, 'printColumnValue'], 10, 2 );
57
-			add_filter( "manage_{$type}_posts_columns", function( $columns ) use( $args ) {
57
+			add_filter( "manage_{$type}_posts_columns", function( $columns ) use( $args )
58
+			{
58 59
 				return count( $args['columns'] ) > 1
59 60
 					? $args['columns']
60 61
 					: $columns;
@@ -71,7 +72,8 @@  discard block
 block discarded – undo
71 72
 			$this->types,
72 73
 			get_post_types( ['_builtin' => true] )
73 74
 		);
74
-		array_walk( $types, function( $args, $type ) {
75
+		array_walk( $types, function( $args, $type )
76
+		{
75 77
 			register_post_type( $type, array_diff_key( $args, array_flip( static::CUSTOM_KEYS )));
76 78
 		});
77 79
 	}
Please login to merge, or discard this patch.