Completed
Push — develop ( 300ef2...e7ec38 )
by Paul
04:06 queued 42s
created
src/Config/Config.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@  discard block
 block discarded – undo
39 39
 	{
40 40
 		if( $this->app->config->disable_config )return;
41 41
 
42
-		add_action( 'admin_menu',     [$this, 'registerPage'] );
43
-		add_action( 'admin_menu',     [$this, 'registerSetting'] );
44
-		add_action( 'current_screen', [$this, 'resetPage'] );
42
+		add_action( 'admin_menu', [ $this, 'registerPage' ] );
43
+		add_action( 'admin_menu', [ $this, 'registerSetting' ] );
44
+		add_action( 'current_screen', [ $this, 'resetPage' ] );
45 45
 	}
46 46
 
47 47
 	/**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 			__( 'Pollux', 'pollux' ),
66 66
 			'manage_options',
67 67
 			$this->app->id,
68
-			[$this, 'renderPage']
68
+			[ $this, 'renderPage' ]
69 69
 		);
70 70
 	}
71 71
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	 */
76 76
 	public function registerSetting()
77 77
 	{
78
-		register_setting( static::id(), static::id(), [$this, 'filterSavedSettings'] );
78
+		register_setting( static::id(), static::id(), [ $this, 'filterSavedSettings' ] );
79 79
 	}
80 80
 
81 81
 	/**
@@ -94,9 +94,9 @@  discard block
 block discarded – undo
94 94
 			'config' => $this->app->make( ConfigManager::class ),
95 95
 			'heading' => __( 'Pollux Settings', 'pollux' ),
96 96
 			'id' => static::id(),
97
-			'reset_url' => esc_url( add_query_arg( $query, admin_url( 'options-general.php' ))),
97
+			'reset_url' => esc_url( add_query_arg( $query, admin_url( 'options-general.php' ) ) ),
98 98
 			'has_meta_box' => $this->app->gatekeeper->hasDependency( 'meta-box/meta-box.php' ),
99
-		]);
99
+		] );
100 100
 	}
101 101
 
102 102
 	/**
@@ -108,16 +108,16 @@  discard block
 block discarded – undo
108 108
 		if( filter_input( INPUT_GET, 'page' ) !== $this->app->id
109 109
 			|| filter_input( INPUT_GET, 'action' ) !== 'reset'
110 110
 		)return;
111
-		if( wp_verify_nonce( filter_input( INPUT_GET, '_wpnonce' ), static::id() )) {
111
+		if( wp_verify_nonce( filter_input( INPUT_GET, '_wpnonce' ), static::id() ) ) {
112 112
 			delete_option( static::id() );
113 113
 			$this->app->make( ConfigManager::class )->compile( true );
114 114
 			add_settings_error( static::id(), 'reset', __( 'Reset successful.', 'pollux' ), 'updated' );
115 115
 		}
116 116
 		else {
117
-			add_settings_error( static::id(), 'failed', __( 'Failed to reset. Please try again.', 'pollux' ));
117
+			add_settings_error( static::id(), 'failed', __( 'Failed to reset. Please try again.', 'pollux' ) );
118 118
 		}
119 119
 		set_transient( 'settings_errors', get_settings_errors(), 30 );
120
-		wp_safe_redirect( add_query_arg( 'settings-updated', 'true',  wp_get_referer() ));
120
+		wp_safe_redirect( add_query_arg( 'settings-updated', 'true', wp_get_referer() ) );
121 121
 		exit;
122 122
 	}
123 123
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,9 @@  discard block
 block discarded – undo
37 37
 	 */
38 38
 	public function init()
39 39
 	{
40
-		if( $this->app->config->disable_config )return;
40
+		if( $this->app->config->disable_config ) {
41
+			return;
42
+		}
41 43
 
42 44
 		add_action( 'admin_menu',     [$this, 'registerPage'] );
43 45
 		add_action( 'admin_menu',     [$this, 'registerSetting'] );
@@ -107,7 +109,9 @@  discard block
 block discarded – undo
107 109
 	{
108 110
 		if( filter_input( INPUT_GET, 'page' ) !== $this->app->id
109 111
 			|| filter_input( INPUT_GET, 'action' ) !== 'reset'
110
-		)return;
112
+		) {
113
+			return;
114
+		}
111 115
 		if( wp_verify_nonce( filter_input( INPUT_GET, '_wpnonce' ), static::id() )) {
112 116
 			delete_option( static::id() );
113 117
 			$this->app->make( ConfigManager::class )->compile( true );
Please login to merge, or discard this patch.
src/MetaBox/Instruction.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -22,11 +22,11 @@  discard block
 block discarded – undo
22 22
 	{
23 23
 		$instructions = array_reduce( $this->getInstructionGroups(), function( $html, $metabox ) {
24 24
 			$fields = $this->getInstructionFields( $metabox );
25
-			if( empty( $fields )) {
25
+			if( empty( $fields ) ) {
26 26
 				return $html;
27 27
 			}
28 28
 			return $html . sprintf( '<p><strong>%s</strong></p><pre class="my-sites nav-tab-active misc-pub-section">%s</pre>',
29
-				$metabox['title'],
29
+				$metabox[ 'title' ],
30 30
 				$fields
31 31
 			);
32 32
 		});
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
 	 */
39 39
 	protected function getInstructionFields( $metabox )
40 40
 	{
41
-		$skipFields = ['custom_html', 'divider', 'heading', 'taxonomy'];
42
-		return array_reduce( $metabox['fields'], function( $html, $field ) use( $metabox, $skipFields ) {
43
-			return $this->validate( $field['condition'] ) && !in_array( $field['type'], $skipFields )
44
-				? $html . $this->filter( 'instruction', "PostMeta::get('{$field['slug']}');", $field, $metabox ) . PHP_EOL
41
+		$skipFields = [ 'custom_html', 'divider', 'heading', 'taxonomy' ];
42
+		return array_reduce( $metabox[ 'fields' ], function( $html, $field ) use( $metabox, $skipFields ) {
43
+			return $this->validate( $field[ 'condition' ] ) && !in_array( $field[ 'type' ], $skipFields )
44
+				? $html . $this->filter( 'instruction', "PostMeta::get('{$field[ 'slug' ]}');", $field, $metabox ) . PHP_EOL
45 45
 				: $html;
46 46
 		});
47 47
 	}
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	protected function getInstructionGroups()
53 53
 	{
54 54
 		return array_filter( $this->metaboxes, function( $metabox ) {
55
-			return $this->validate( $metabox['condition'] )
55
+			return $this->validate( $metabox[ 'condition' ] )
56 56
 				&& $this->hasPostType( $metabox );
57 57
 		});
58 58
 	}
@@ -66,11 +66,11 @@  discard block
 block discarded – undo
66 66
 		return [
67 67
 			'infodiv' => [
68 68
 				'context' => 'side',
69
-				'fields' => [[
69
+				'fields' => [ [
70 70
 					'slug' => '',
71 71
 					'std' => $this->generateInstructions(),
72 72
 					'type' => 'custom_html',
73
-				]],
73
+				] ],
74 74
 				'post_types' => $this->getPostTypes(),
75 75
 				'priority' => 'low',
76 76
 				'title' => __( 'How to use in your theme', 'pollux' ),
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	{
86 86
 		return $this->filter( 'show/instructions', count( array_filter( $this->metaboxes, function( $metabox ) {
87 87
 			return $this->show( false, $metabox );
88
-		})) > 0 );
88
+		}) ) > 0 );
89 89
 	}
90 90
 
91 91
 	/**
Please login to merge, or discard this patch.
Braces   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,7 +20,8 @@  discard block
 block discarded – undo
20 20
 	 */
21 21
 	protected function generateInstructions()
22 22
 	{
23
-		$instructions = array_reduce( $this->getInstructionGroups(), function( $html, $metabox ) {
23
+		$instructions = array_reduce( $this->getInstructionGroups(), function( $html, $metabox )
24
+		{
24 25
 			$fields = $this->getInstructionFields( $metabox );
25 26
 			if( empty( $fields )) {
26 27
 				return $html;
@@ -39,7 +40,8 @@  discard block
 block discarded – undo
39 40
 	protected function getInstructionFields( $metabox )
40 41
 	{
41 42
 		$skipFields = ['custom_html', 'divider', 'heading', 'taxonomy'];
42
-		return array_reduce( $metabox['fields'], function( $html, $field ) use( $metabox, $skipFields ) {
43
+		return array_reduce( $metabox['fields'], function( $html, $field ) use( $metabox, $skipFields )
44
+		{
43 45
 			return $this->validate( $field['condition'] ) && !in_array( $field['type'], $skipFields )
44 46
 				? $html . $this->filter( 'instruction', "PostMeta::get('{$field['slug']}');", $field, $metabox ) . PHP_EOL
45 47
 				: $html;
@@ -51,7 +53,8 @@  discard block
 block discarded – undo
51 53
 	 */
52 54
 	protected function getInstructionGroups()
53 55
 	{
54
-		return array_filter( $this->metaboxes, function( $metabox ) {
56
+		return array_filter( $this->metaboxes, function( $metabox )
57
+		{
55 58
 			return $this->validate( $metabox['condition'] )
56 59
 				&& $this->hasPostType( $metabox );
57 60
 		});
@@ -62,7 +65,9 @@  discard block
 block discarded – undo
62 65
 	 */
63 66
 	protected function initInstructions()
64 67
 	{
65
-		if( !$this->showInstructions() )return;
68
+		if( !$this->showInstructions() ) {
69
+			return;
70
+		}
66 71
 		return [
67 72
 			'infodiv' => [
68 73
 				'context' => 'side',
@@ -83,7 +88,8 @@  discard block
 block discarded – undo
83 88
 	 */
84 89
 	protected function showInstructions()
85 90
 	{
86
-		return $this->filter( 'show/instructions', count( array_filter( $this->metaboxes, function( $metabox ) {
91
+		return $this->filter( 'show/instructions', count( array_filter( $this->metaboxes, function( $metabox )
92
+		{
87 93
 			return $this->show( false, $metabox );
88 94
 		})) > 0 );
89 95
 	}
Please login to merge, or discard this patch.
src/Config/ConfigManager.php 2 patches
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -42,13 +42,13 @@  discard block
 block discarded – undo
42 42
 		$yamlFile = $this->getYamlFile();
43 43
 		$yaml = $this->normalizeYamlValues( $this->normalize(
44 44
 			$this->parseYaml( file_get_contents( $yamlFile ), $yamlFile )
45
-		));
46
-		if( !$yaml['disable_config'] ) {
47
-			$config = array_filter( (array) get_option( Config::id(), [] ));
45
+		) );
46
+		if( !$yaml[ 'disable_config' ] ) {
47
+			$config = array_filter( (array) get_option( Config::id(), [ ] ) );
48 48
 		}
49 49
 		return empty( $config )
50
-			? $this->setTimestamp( $yaml, filemtime( $yamlFile ))
51
-			: $this->normalizeYamlValues( $this->normalize( $config ));
50
+			? $this->setTimestamp( $yaml, filemtime( $yamlFile ) )
51
+			: $this->normalizeYamlValues( $this->normalize( $config ) );
52 52
 	}
53 53
 
54 54
 	/**
@@ -58,15 +58,15 @@  discard block
 block discarded – undo
58 58
 	public function compile( $force = false )
59 59
 	{
60 60
 		$configFile = $this->getCompileDestination();
61
-		if( $force || $this->shouldCompile( $configFile )) {
61
+		if( $force || $this->shouldCompile( $configFile ) ) {
62 62
 			$config = $this->normalizeArray( $this->options );
63 63
 			if( $this->parseError ) {
64 64
 				return (object) $config;
65 65
 			}
66 66
 			file_put_contents( $configFile, sprintf( '<?php // DO NOT MODIFY THIS FILE DIRECTLY!%sreturn (object) %s;',
67 67
 				PHP_EOL,
68
-				$this->parseRawStrings( var_export( $this->setTimestamp( $config ), true ))
69
-			));
68
+				$this->parseRawStrings( var_export( $this->setTimestamp( $config ), true ) )
69
+			) );
70 70
 		}
71 71
 		return include $configFile;
72 72
 	}
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	public function convertArrayToYaml( array $array )
78 78
 	{
79 79
 		return !empty( $array )
80
-			? trim( $this->parseRawStrings( $this->dumpYaml( $array )))
80
+			? trim( $this->parseRawStrings( $this->dumpYaml( $array ) ) )
81 81
 			: '';
82 82
 	}
83 83
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 	 */
98 98
 	public function getYamlFile()
99 99
 	{
100
-		if( $file = $this->app->getFile( 'pollux.yml' )) {
100
+		if( $file = $this->app->getFile( 'pollux.yml' ) ) {
101 101
 			return $file;
102 102
 		}
103 103
 		return $this->app->path( 'defaults.yml' );
@@ -109,10 +109,10 @@  discard block
 block discarded – undo
109 109
 	public function normalizeArray( array $array )
110 110
 	{
111 111
 		array_walk( $array, function( &$value, $key ) {
112
-			if( !is_numeric( $value ) && is_string( $value )) {
112
+			if( !is_numeric( $value ) && is_string( $value ) ) {
113 113
 				$value = $this->parseYaml( $value, $key );
114 114
 				if( $this->parseError == $key ) {
115
-					$value = [];
115
+					$value = [ ];
116 116
 				}
117 117
 			}
118 118
 		});
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	public function setTimestamp( array $config, $timestamp = null )
138 138
 	{
139 139
 		$timestamp || $timestamp = time();
140
-		$config['updated'] = $timestamp;
140
+		$config[ 'updated' ] = $timestamp;
141 141
 		return $config;
142 142
 	}
143 143
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 		return wp_parse_args(
163 163
 			$config,
164 164
 			$this->parseYaml(
165
-				file_get_contents( $this->app->path( 'defaults.yml' )),
165
+				file_get_contents( $this->app->path( 'defaults.yml' ) ),
166 166
 				$this->app->path( 'defaults.yml' )
167 167
 			)
168 168
 		);
@@ -176,13 +176,13 @@  discard block
 block discarded – undo
176 176
 	protected function parseRawStrings( $configString )
177 177
 	{
178 178
 		$strings = apply_filters( 'pollux/config/raw_strings', static::RAW_STRINGS );
179
-		if( empty( $strings )) {
179
+		if( empty( $strings ) ) {
180 180
 			return $configString;
181 181
 		}
182 182
 		$pattern = '/(\')((' . implode( '|', $strings ) . ')\(?.+\))(\')/';
183 183
 		return stripslashes(
184 184
 			preg_replace_callback( $pattern, function( $matches ) {
185
-				return str_replace( "''", "'", $matches[2] );
185
+				return str_replace( "''", "'", $matches[ 2 ] );
186 186
 			}, $configString )
187 187
 		);
188 188
 	}
@@ -201,13 +201,13 @@  discard block
 block discarded – undo
201 201
 			if( $file ) {
202 202
 				$file = sprintf( '<code>%s</code>', $file );
203 203
 			}
204
-			$this->app->make( 'Notice' )->addError([
204
+			$this->app->make( 'Notice' )->addError( [
205 205
 				sprintf( '<strong>Pollux Error:</strong> Unable to parse config at line %s (near "%s").',
206 206
 					$e->getParsedLine(),
207 207
 					$e->getSnippet()
208 208
 				),
209 209
 				$file
210
-			]);
210
+			] );
211 211
 			return $value;
212 212
 		}
213 213
 	}
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 	 */
219 219
 	protected function shouldCompile( $configFile )
220 220
 	{
221
-		if( !file_exists( $configFile )) {
221
+		if( !file_exists( $configFile ) ) {
222 222
 			return true;
223 223
 		}
224 224
 		$config = include $configFile;
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -108,7 +108,8 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	public function normalizeArray( array $array )
110 110
 	{
111
-		array_walk( $array, function( &$value, $key ) {
111
+		array_walk( $array, function( &$value, $key )
112
+		{
112 113
 			if( !is_numeric( $value ) && is_string( $value )) {
113 114
 				$value = $this->parseYaml( $value, $key );
114 115
 				if( $this->parseError == $key ) {
@@ -124,7 +125,8 @@  discard block
 block discarded – undo
124 125
 	 */
125 126
 	public function normalizeYamlValues( array $array )
126 127
 	{
127
-		return array_map( function( $value ) {
128
+		return array_map( function( $value )
129
+		{
128 130
 			return is_array( $value )
129 131
 				? $this->convertArrayToYaml( $value )
130 132
 				: $value;
@@ -181,7 +183,8 @@  discard block
 block discarded – undo
181 183
 		}
182 184
 		$pattern = '/(\')((' . implode( '|', $strings ) . ')\(?.+\))(\')/';
183 185
 		return stripslashes(
184
-			preg_replace_callback( $pattern, function( $matches ) {
186
+			preg_replace_callback( $pattern, function( $matches )
187
+			{
185 188
 				return str_replace( "''", "'", $matches[2] );
186 189
 			}, $configString )
187 190
 		);
Please login to merge, or discard this patch.
src/Settings/RWMetaBox.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,8 @@
 block discarded – undo
55 55
 		if( !empty( $field['multiple'] ) && $field['id'] == substr( $field['field_name'], 0, -2 )) {
56 56
 			$parts = array_filter( explode( '-', $field['id'] ));
57 57
 			$first = array_shift( $parts );
58
-			$field['field_name'] = array_reduce( $parts, function( $carry, $part ) {
58
+			$field['field_name'] = array_reduce( $parts, function( $carry, $part )
59
+			{
59 60
 				return sprintf( '%s[%s]', $carry, $part );
60 61
 			}, $first ) . '[]';
61 62
 		}
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -19,13 +19,13 @@  discard block
 block discarded – undo
19 19
 		$this->pollux_caller = $caller;
20 20
 		$this->pollux_id = $id;
21 21
 
22
-		remove_action( 'add_meta_boxes', [$this, 'add_meta_boxes'] );
23
-		remove_action( 'save_post_post', [$this, 'save_post'] );
22
+		remove_action( 'add_meta_boxes', [ $this, 'add_meta_boxes' ] );
23
+		remove_action( 'save_post_post', [ $this, 'save_post' ] );
24 24
 
25
-		add_action( 'pollux/archives/init', [$this, 'add_meta_boxes'] );
26
-		add_action( 'pollux/settings/init', [$this, 'add_meta_boxes'] );
27
-		add_filter( 'rwmb_field_meta',      [$this, '_get_field_meta'], 10, 3 );
28
-		add_filter( 'rwmb_normalize_field', [$this, '_normalize_field'] );
25
+		add_action( 'pollux/archives/init', [ $this, 'add_meta_boxes' ] );
26
+		add_action( 'pollux/settings/init', [ $this, 'add_meta_boxes' ] );
27
+		add_filter( 'rwmb_field_meta', [ $this, '_get_field_meta' ], 10, 3 );
28
+		add_filter( 'rwmb_normalize_field', [ $this, '_normalize_field' ] );
29 29
 	}
30 30
 
31 31
 	/**
@@ -36,13 +36,13 @@  discard block
 block discarded – undo
36 36
 	 */
37 37
 	public function _get_field_meta( $meta, array $field, $saved )
38 38
 	{
39
-		if( !$this->is_edit_screen() || !empty(( new Helper )->toArray( $meta )) || empty( $field['slug'] )) {
39
+		if( !$this->is_edit_screen() || !empty( ( new Helper )->toArray( $meta ) ) || empty( $field[ 'slug' ] ) ) {
40 40
 			return $meta;
41 41
 		}
42
-		$meta = call_user_func( [RWMB_Field::get_class_name( $field ), 'esc_meta'], ( $saved
43
-			? $this->pollux_caller->getMetaValue( $field['slug'], $meta, $this->meta_box['slug'] )
44
-			: $field['std']
45
-		));
42
+		$meta = call_user_func( [ RWMB_Field::get_class_name( $field ), 'esc_meta' ], ( $saved
43
+			? $this->pollux_caller->getMetaValue( $field[ 'slug' ], $meta, $this->meta_box[ 'slug' ] )
44
+			: $field[ 'std' ]
45
+		) );
46 46
 		return $this->_normalize_field_meta( $meta, $field );
47 47
 	}
48 48
 
@@ -51,10 +51,10 @@  discard block
 block discarded – undo
51 51
 	 */
52 52
 	public function _normalize_field( array $field )
53 53
 	{
54
-		if( !empty( $field['multiple'] ) && $field['id'] == substr( $field['field_name'], 0, -2 )) {
55
-			$parts = array_filter( explode( '-', $field['id'] ));
54
+		if( !empty( $field[ 'multiple' ] ) && $field[ 'id' ] == substr( $field[ 'field_name' ], 0, -2 ) ) {
55
+			$parts = array_filter( explode( '-', $field[ 'id' ] ) );
56 56
 			$first = array_shift( $parts );
57
-			$field['field_name'] = array_reduce( $parts, function( $carry, $part ) {
57
+			$field[ 'field_name' ] = array_reduce( $parts, function( $carry, $part ) {
58 58
 				return sprintf( '%s[%s]', $carry, $part );
59 59
 			}, $first ) . '[]';
60 60
 		}
@@ -67,14 +67,14 @@  discard block
 block discarded – undo
67 67
 	 */
68 68
 	public function _normalize_field_meta( $meta, array $field )
69 69
 	{
70
-		if( !empty( $meta ) && is_array( $meta )) {
70
+		if( !empty( $meta ) && is_array( $meta ) ) {
71 71
 			return $meta;
72 72
 		}
73
-		if( $field['clone'] ) {
74
-			return [''];
73
+		if( $field[ 'clone' ] ) {
74
+			return [ '' ];
75 75
 		}
76
-		if( $field['multiple'] ) {
77
-			return [];
76
+		if( $field[ 'multiple' ] ) {
77
+			return [ ];
78 78
 		}
79 79
 		return $meta;
80 80
 	}
@@ -87,12 +87,12 @@  discard block
 block discarded – undo
87 87
 	public function add_meta_boxes()
88 88
 	{
89 89
 		add_meta_box(
90
-			$this->meta_box['id'],
91
-			$this->meta_box['title'],
92
-			[$this, 'show'],
90
+			$this->meta_box[ 'id' ],
91
+			$this->meta_box[ 'title' ],
92
+			[ $this, 'show' ],
93 93
 			null,
94
-			$this->meta_box['context'],
95
-			$this->meta_box['priority']
94
+			$this->meta_box[ 'context' ],
95
+			$this->meta_box[ 'priority' ]
96 96
 		);
97 97
 	}
98 98
 
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	public function is_saved()
111 111
 	{
112 112
 		foreach( array_column( $this->fields, 'slug' ) as $field ) {
113
-			if( !is_null( $this->pollux_caller->getMetaValue( $field, null, $this->meta_box['slug'] ))) {
113
+			if( !is_null( $this->pollux_caller->getMetaValue( $field, null, $this->meta_box[ 'slug' ] ) ) ) {
114 114
 				return true;
115 115
 			}
116 116
 		}
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	 */
124 124
 	public static function normalize( $metabox )
125 125
 	{
126
-		unset( $metabox['post_types'] );
127
-		return wp_parse_args( $metabox, ['slug' => ''] );
126
+		unset( $metabox[ 'post_types' ] );
127
+		return wp_parse_args( $metabox, [ 'slug' => '' ] );
128 128
 	}
129 129
 }
Please login to merge, or discard this patch.
src/MetaBox/SiteMetaManager.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
 	public function __construct()
21 21
 	{
22
-		$this->options = get_option( Settings::id(), [] );
22
+		$this->options = get_option( Settings::id(), [ ] );
23 23
 	}
24 24
 
25 25
 	/**
@@ -30,10 +30,10 @@  discard block
 block discarded – undo
30 30
 	{
31 31
 		$args = array_pad( $args, 2, null );
32 32
 		$group = $this->$group;
33
-		if( is_object( $group )) {
33
+		if( is_object( $group ) ) {
34 34
 			return $group;
35 35
 		}
36
-		return $this->get( $group, $args[0], $args[1] );
36
+		return $this->get( $group, $args[ 0 ], $args[ 1 ] );
37 37
 	}
38 38
 
39 39
 	/**
@@ -45,14 +45,14 @@  discard block
 block discarded – undo
45 45
 		if( $group == 'all' ) {
46 46
 			return (object) $this->options;
47 47
 		}
48
-		if( empty( $group )) {
48
+		if( empty( $group ) ) {
49 49
 			$group = $this->getDefaultGroup();
50 50
 		}
51
-		if( is_array( $group )) {
51
+		if( is_array( $group ) ) {
52 52
 			$group = reset( $group );
53 53
 		}
54
-		return isset( $this->options[$group] )
55
-			? $this->options[$group]
54
+		return isset( $this->options[ $group ] )
55
+			? $this->options[ $group ]
56 56
 			: null;
57 57
 	}
58 58
 
@@ -67,13 +67,13 @@  discard block
 block discarded – undo
67 67
 		if( func_num_args() < 1 ) {
68 68
 			return $this->all;
69 69
 		}
70
-		if( is_string( $group )) {
70
+		if( is_string( $group ) ) {
71 71
 			$group = $this->$group;
72 72
 		}
73
-		if( !is_array( $group )) {
73
+		if( !is_array( $group ) ) {
74 74
 			return $fallback;
75 75
 		}
76
-		if( is_null( $key )) {
76
+		if( is_null( $key ) ) {
77 77
 			return $group;
78 78
 		}
79 79
 		return $this->getValue( $group, $key, $fallback );
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
 	 */
95 95
 	protected function getValue( array $group, $key, $fallback )
96 96
 	{
97
-		if( !array_key_exists( $key, $group )) {
97
+		if( !array_key_exists( $key, $group ) ) {
98 98
 			return $fallback;
99 99
 		}
100
-		return empty( $group[$key] ) && !is_null( $fallback )
100
+		return empty( $group[ $key ] ) && !is_null( $fallback )
101 101
 			? $fallback
102
-			: $group[$key];
102
+			: $group[ $key ];
103 103
 	}
104 104
 }
Please login to merge, or discard this patch.
thirdparty.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
  * Compatibility with Give WP plugin
5 5
  */
6 6
 add_filter( 'give_load_admin_scripts', function( $is_admin_page, $hook ) {
7
-	$needle = sprintf( '_page_%s', filter_input( INPUT_GET, 'page' ));
8
-	return substr( $hook, - strlen( $needle )) !== $needle
7
+	$needle = sprintf( '_page_%s', filter_input( INPUT_GET, 'page' ) );
8
+	return substr( $hook, - strlen( $needle ) ) !== $needle
9 9
 		? $is_admin_page
10 10
 		: true;
11 11
 }, 10, 2 );
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,8 @@
 block discarded – undo
3 3
 /**
4 4
  * Compatibility with Give WP plugin
5 5
  */
6
-add_filter( 'give_load_admin_scripts', function( $is_admin_page, $hook ) {
6
+add_filter( 'give_load_admin_scripts', function( $is_admin_page, $hook )
7
+{
7 8
 	$needle = sprintf( '_page_%s', filter_input( INPUT_GET, 'page' ));
8 9
 	return substr( $hook, - strlen( $needle )) !== $needle
9 10
 		? $is_admin_page
Please login to merge, or discard this patch.
src/Application.php 2 patches
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 	public $gatekeeper;
19 19
 	public $id;
20 20
 	public $name;
21
-	public $notices = [];
21
+	public $notices = [ ];
22 22
 	public $version;
23 23
 
24 24
 	/**
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
 
32 32
 	public function __construct()
33 33
 	{
34
-		$this->file = realpath( dirname( dirname( __FILE__ )) . '/pollux.php' );
35
-		$this->gatekeeper = new GateKeeper( plugin_basename( $this->file ));
34
+		$this->file = realpath( dirname( dirname( __FILE__ ) ) . '/pollux.php' );
35
+		$this->gatekeeper = new GateKeeper( plugin_basename( $this->file ) );
36 36
 
37 37
 		$data = get_file_data( $this->file, array(
38 38
 			'id' => 'Text Domain',
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
 		add_action( 'plugins_loaded', function() {
59 59
 			$this->bootstrap();
60 60
 		});
61
-		add_action( 'admin_enqueue_scripts',           array( $controller, 'registerAssets' ));
62
-		add_action( 'admin_init',                      array( $controller, 'removeDashboardWidgets' ));
63
-		add_action( 'wp_before_admin_bar_render',      array( $controller, 'removeWordPressMenu' ));
64
-		add_filter( "plugin_action_links_{$basename}", array( $controller, 'filterPluginLinks' ));
65
-		add_filter( 'admin_footer_text',               array( $controller, 'filterWordPressFooter' ));
61
+		add_action( 'admin_enqueue_scripts', array( $controller, 'registerAssets' ) );
62
+		add_action( 'admin_init', array( $controller, 'removeDashboardWidgets' ) );
63
+		add_action( 'wp_before_admin_bar_render', array( $controller, 'removeWordPressMenu' ) );
64
+		add_filter( "plugin_action_links_{$basename}", array( $controller, 'filterPluginLinks' ) );
65
+		add_filter( 'admin_footer_text', array( $controller, 'filterWordPressFooter' ) );
66 66
 
67 67
 		// Disallow indexing of the site on non-production environments
68 68
 		if( !$this->environment( 'production' ) && !is_admin() ) {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	public function environment( $checkFor = '' )
78 78
 	{
79 79
 		$environment = defined( 'WP_ENV' ) ? WP_ENV : 'production';
80
-		if( !empty( $checkFor )) {
80
+		if( !empty( $checkFor ) ) {
81 81
 			return $environment == $checkFor;
82 82
 		}
83 83
 		return $environment;
@@ -96,11 +96,11 @@  discard block
 block discarded – undo
96 96
 			trailingslashit( trailingslashit( $theme->theme_root ) . $theme->template ),
97 97
 			trailingslashit( WP_CONTENT_DIR ),
98 98
 			trailingslashit( ABSPATH ),
99
-			trailingslashit( dirname( ABSPATH )),
100
-			trailingslashit( dirname( dirname( ABSPATH ))),
101
-		]);
99
+			trailingslashit( dirname( ABSPATH ) ),
100
+			trailingslashit( dirname( dirname( ABSPATH ) ) ),
101
+		] );
102 102
 		foreach( (array) $locations as $location ) {
103
-			if( !file_exists( $location . $filename ))continue;
103
+			if( !file_exists( $location . $filename ) )continue;
104 104
 			return $location . $filename;
105 105
 		}
106 106
 		return null;
@@ -133,14 +133,14 @@  discard block
 block discarded – undo
133 133
 	 * @param string $view
134 134
 	 * @return void|null
135 135
 	 */
136
-	public function render( $view, array $data = [] )
136
+	public function render( $view, array $data = [ ] )
137 137
 	{
138 138
 		$file = apply_filters( 'pollux/views/file',
139
-			$this->path( sprintf( 'views/%s.php', str_replace( '.php', '', $view ))),
139
+			$this->path( sprintf( 'views/%s.php', str_replace( '.php', '', $view ) ) ),
140 140
 			$view,
141 141
 			$data
142 142
 		);
143
-		if( !file_exists( $file ))return;
143
+		if( !file_exists( $file ) )return;
144 144
 		extract( $data );
145 145
 		include $file;
146 146
 	}
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 	 */
152 152
 	public function url( $path = '' )
153 153
 	{
154
-		return esc_url( plugin_dir_url( $this->file ) . ltrim( trim( $path ), '/' ));
154
+		return esc_url( plugin_dir_url( $this->file ) . ltrim( trim( $path ), '/' ) );
155 155
 	}
156 156
 
157 157
 	/**
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 	 */
185 185
 	protected function loadHooks()
186 186
 	{
187
-		if( $file = $this->getFile( 'pollux-hooks.php' )) {
187
+		if( $file = $this->getFile( 'pollux-hooks.php' ) ) {
188 188
 			include_once $file;
189 189
 		}
190 190
 	}
@@ -206,6 +206,6 @@  discard block
 block discarded – undo
206 206
 			'ArchiveMeta' => 'GeminiLabs\Pollux\Facades\ArchiveMeta',
207 207
 			'PostMeta' => 'GeminiLabs\Pollux\Facades\PostMeta',
208 208
 			'SiteMeta' => 'GeminiLabs\Pollux\Facades\SiteMeta',
209
-		)))->register();
209
+		) ) )->register();
210 210
 	}
211 211
 }
Please login to merge, or discard this patch.
Braces   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,8 @@  discard block
 block discarded – undo
55 55
 		$basename = plugin_basename( $this->file );
56 56
 		$controller = $this->make( 'Controller' );
57 57
 
58
-		add_action( 'plugins_loaded', function() {
58
+		add_action( 'plugins_loaded', function()
59
+		{
59 60
 			$this->bootstrap();
60 61
 		});
61 62
 		add_action( 'admin_enqueue_scripts',           array( $controller, 'registerAssets' ));
@@ -100,7 +101,9 @@  discard block
 block discarded – undo
100 101
 			trailingslashit( dirname( dirname( ABSPATH ))),
101 102
 		]);
102 103
 		foreach( (array) $locations as $location ) {
103
-			if( !file_exists( $location . $filename ))continue;
104
+			if( !file_exists( $location . $filename )) {
105
+				continue;
106
+			}
104 107
 			return $location . $filename;
105 108
 		}
106 109
 		return null;
@@ -140,7 +143,9 @@  discard block
 block discarded – undo
140 143
 			$view,
141 144
 			$data
142 145
 		);
143
-		if( !file_exists( $file ))return;
146
+		if( !file_exists( $file )) {
147
+			return;
148
+		}
144 149
 		extract( $data );
145 150
 		include $file;
146 151
 	}
Please login to merge, or discard this patch.
pollux.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -18,18 +18,18 @@
 block discarded – undo
18 18
 
19 19
 defined( 'WPINC' ) || die;
20 20
 
21
-require_once __DIR__.'/activate.php';
21
+require_once __DIR__ . '/activate.php';
22 22
 
23 23
 if( \Pollux_Activate::shouldDeactivate() )return;
24 24
 
25
-require_once __DIR__.'/autoload.php';
26
-require_once __DIR__.'/helpers.php';
27
-require_once __DIR__.'/thirdparty.php';
25
+require_once __DIR__ . '/autoload.php';
26
+require_once __DIR__ . '/helpers.php';
27
+require_once __DIR__ . '/thirdparty.php';
28 28
 
29 29
 $app = \GeminiLabs\Pollux\Application::getInstance();
30 30
 
31
-register_activation_hook( __FILE__, array( $app, 'onActivation' ));
32
-register_deactivation_hook( __FILE__, array( $app, 'onDeactivation' ));
31
+register_activation_hook( __FILE__, array( $app, 'onActivation' ) );
32
+register_deactivation_hook( __FILE__, array( $app, 'onDeactivation' ) );
33 33
 
34 34
 $app->register( new \GeminiLabs\Pollux\Provider );
35 35
 $app->init();
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,9 @@
 block discarded – undo
20 20
 
21 21
 require_once __DIR__.'/activate.php';
22 22
 
23
-if( \Pollux_Activate::shouldDeactivate() )return;
23
+if( \Pollux_Activate::shouldDeactivate() ) {
24
+	return;
25
+}
24 26
 
25 27
 require_once __DIR__.'/autoload.php';
26 28
 require_once __DIR__.'/helpers.php';
Please login to merge, or discard this patch.
activate.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -43,12 +43,12 @@  discard block
 block discarded – undo
43 43
 	 */
44 44
 	public static function shouldDeactivate()
45 45
 	{
46
-		if( empty( static::$instance )) {
46
+		if( empty( static::$instance ) ) {
47 47
 			static::$instance = new static;
48 48
 		}
49 49
 		if( !static::isValid() ) {
50
-			add_action( 'activated_plugin', array( static::$instance, 'deactivate' ));
51
-			add_action( 'admin_notices', array( static::$instance, 'deactivate' ));
50
+			add_action( 'activated_plugin', array( static::$instance, 'deactivate' ) );
51
+			add_action( 'admin_notices', array( static::$instance, 'deactivate' ) );
52 52
 			return true;
53 53
 		}
54 54
 		return false;
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 	public function deactivate( $plugin )
61 61
 	{
62 62
 		if( static::isValid() )return;
63
-		$pluginName = plugin_basename( dirname( realpath( __FILE__ )).'/'.static::BASENAME );
63
+		$pluginName = plugin_basename( dirname( realpath( __FILE__ ) ) . '/' . static::BASENAME );
64 64
 		if( $plugin == $pluginName ) {
65 65
 			$this->redirect(); //exit
66 66
 		}
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 			filter_input( INPUT_GET, 'plugin_status' ),
78 78
 			filter_input( INPUT_GET, 'paged' ),
79 79
 			filter_input( INPUT_GET, 's' )
80
-		)));
80
+		) ) );
81 81
 		exit;
82 82
 	}
83 83
 
@@ -91,22 +91,22 @@  discard block
 block discarded – undo
91 91
 			__( 'The Pollux plugin was deactivated.', 'pollux' ),
92 92
 			__( 'Sorry, this plugin requires %s or greater in order to work properly.', 'pollux' ),
93 93
 			__( 'Please contact your hosting provider or server administrator to upgrade the version of PHP on your server (your server is running PHP version %s), or try to find an alternative plugin.', 'pollux' ),
94
-			__( 'PHP version', 'pollux' ).' '.static::MIN_PHP_VERSION,
95
-			__( 'WordPress version', 'pollux' ).' '.static::MIN_WORDPRESS_VERSION,
94
+			__( 'PHP version', 'pollux' ) . ' ' . static::MIN_PHP_VERSION,
95
+			__( 'WordPress version', 'pollux' ) . ' ' . static::MIN_WORDPRESS_VERSION,
96 96
 			__( 'Update WordPress', 'pollux' ),
97 97
 		);
98 98
 		if( !static::isPhpValid() ) {
99 99
 			printf( $noticeTemplate,
100
-				$messages[0],
101
-				sprintf( $messages[1], $messages[3] ),
102
-				sprintf( $messages[2], PHP_VERSION )
100
+				$messages[ 0 ],
101
+				sprintf( $messages[ 1 ], $messages[ 3 ] ),
102
+				sprintf( $messages[ 2 ], PHP_VERSION )
103 103
 			);
104 104
 		}
105 105
 		else if( !static::isWpValid() ) {
106 106
 			printf( $noticeTemplate,
107
-				$messages[0],
108
-				sprintf( $messages[1], $messages[4] ),
109
-				sprintf( '<a href="%s">%s</a>', admin_url( 'update-core.php' ), $messages[5] )
107
+				$messages[ 0 ],
108
+				sprintf( $messages[ 1 ], $messages[ 4 ] ),
109
+				sprintf( '<a href="%s">%s</a>', admin_url( 'update-core.php' ), $messages[ 5 ] )
110 110
 			);
111 111
 		}
112 112
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,9 @@
 block discarded – undo
59 59
 	 */
60 60
 	public function deactivate( $plugin )
61 61
 	{
62
-		if( static::isValid() )return;
62
+		if( static::isValid() ) {
63
+			return;
64
+		}
63 65
 		$pluginName = plugin_basename( dirname( realpath( __FILE__ )).'/'.static::BASENAME );
64 66
 		if( $plugin == $pluginName ) {
65 67
 			$this->redirect(); //exit
Please login to merge, or discard this patch.