Completed
Push — master ( c92e73...aa0d9f )
by Paul
05:19 queued 02:42
created
src/AliasLoader.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
 	 *
39 39
 	 * @return AliasLoader
40 40
 	 */
41
-	public static function getInstance( array $aliases = [] )
41
+	public static function getInstance( array $aliases = [ ] )
42 42
 	{
43
-		if( is_null( static::$instance )) {
43
+		if( is_null( static::$instance ) ) {
44 44
 			return static::$instance = new static( $aliases );
45 45
 		}
46 46
 
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 	 */
61 61
 	public function load( $alias )
62 62
 	{
63
-		if( isset( $this->aliases[$alias] )) {
64
-			return class_alias( $this->aliases[$alias], $alias );
63
+		if( isset( $this->aliases[ $alias ] ) ) {
64
+			return class_alias( $this->aliases[ $alias ], $alias );
65 65
 		}
66 66
 	}
67 67
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	public function register()
74 74
 	{
75 75
 		if( !$this->registered ) {
76
-			spl_autoload_register( [$this, 'load'], true, true );
76
+			spl_autoload_register( [ $this, 'load' ], true, true );
77 77
 			$this->registered = true;
78 78
 		}
79 79
 	}
Please login to merge, or discard this patch.
src/Container.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  discard block
 block discarded – undo
21 21
      *
22 22
      * @var array
23 23
      */
24
-	protected $services = [];
24
+	protected $services = [ ];
25 25
 
26 26
     /**
27 27
      * The container's bucket items
28 28
      *
29 29
      * @var array
30 30
      */
31
-	protected $bucket = [];
31
+	protected $bucket = [ ];
32 32
 
33 33
 	/**
34 34
 	 * Set the globally available instance of the container.
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 */
38 38
 	public static function getInstance()
39 39
 	{
40
-		if( is_null( static::$instance )) {
40
+		if( is_null( static::$instance ) ) {
41 41
 			static::$instance = new static;
42 42
 		}
43 43
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 */
55 55
 	public function bind( $alias, $concrete )
56 56
 	{
57
-		$this->services[$alias] = $concrete;
57
+		$this->services[ $alias ] = $concrete;
58 58
 	}
59 59
 
60 60
 	/**
@@ -68,14 +68,14 @@  discard block
 block discarded – undo
68 68
 	 */
69 69
 	public function make( $abstract )
70 70
 	{
71
-		$service = isset( $this->services[$abstract] )
72
-			? $this->services[$abstract]
71
+		$service = isset( $this->services[ $abstract ] )
72
+			? $this->services[ $abstract ]
73 73
 			: $this->addNamespace( $abstract );
74 74
 
75
-		if( is_callable( $service )) {
76
-			return call_user_func_array( $service, [$this] );
75
+		if( is_callable( $service ) ) {
76
+			return call_user_func_array( $service, [ $this ] );
77 77
 		}
78
-		if( is_object( $service )) {
78
+		if( is_object( $service ) ) {
79 79
 			return $service;
80 80
 		}
81 81
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 	 */
93 93
 	public function singleton( $abstract, $concrete )
94 94
 	{
95
-		$this->bind( $abstract, $this->make( $concrete ));
95
+		$this->bind( $abstract, $this->make( $concrete ) );
96 96
 	}
97 97
 
98 98
 	/**
@@ -104,8 +104,8 @@  discard block
 block discarded – undo
104 104
 	 */
105 105
 	public function __get( $item )
106 106
 	{
107
-		return isset( $this->bucket[$item] )
108
-			? $this->bucket[$item]
107
+		return isset( $this->bucket[ $item ] )
108
+			? $this->bucket[ $item ]
109 109
 			: null;
110 110
 	}
111 111
 
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 	 */
120 120
 	public function __set( $item, $value )
121 121
 	{
122
-		$this->bucket[$item] = $value;
122
+		$this->bucket[ $item ] = $value;
123 123
 	}
124 124
 
125 125
    /**
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 	 */
142 142
 	protected function addNamespace( $abstract )
143 143
 	{
144
-		if( strpos( $abstract, __NAMESPACE__ ) === false && !class_exists( $abstract )) {
144
+		if( strpos( $abstract, __NAMESPACE__ ) === false && !class_exists( $abstract ) ) {
145 145
 			$abstract = __NAMESPACE__ . "\\$abstract";
146 146
 		}
147 147
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 			return $this->notInstantiable( $concrete );
184 184
 		}
185 185
 
186
-		if( is_null(( $constructor = $reflector->getConstructor() ))) {
186
+		if( is_null( ( $constructor = $reflector->getConstructor() ) ) ) {
187 187
 			return new $concrete;
188 188
 		}
189 189
 
@@ -218,11 +218,11 @@  discard block
 block discarded – undo
218 218
 	 */
219 219
 	protected function resolveDependencies( array $dependencies )
220 220
 	{
221
-		$results = [];
221
+		$results = [ ];
222 222
 
223 223
 		foreach( $dependencies as $dependency ) {
224 224
 			// If the class is null, the dependency is a string or some other primitive type
225
-			$results[] = !is_null( $class = $dependency->getClass() )
225
+			$results[ ] = !is_null( $class = $dependency->getClass() )
226 226
 				? $this->resolveClass( $dependency )
227 227
 				: null;
228 228
 		}
Please login to merge, or discard this patch.
src/Facade.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 */
49 49
 	public static function clearResolvedInstances()
50 50
 	{
51
-		static::$resolvedInstance = [];
51
+		static::$resolvedInstance = [ ];
52 52
 	}
53 53
 
54 54
 	/**
@@ -102,14 +102,14 @@  discard block
 block discarded – undo
102 102
 	 */
103 103
 	protected static function resolveFacadeInstance( $name )
104 104
 	{
105
-		if( is_object( $name )) {
105
+		if( is_object( $name ) ) {
106 106
 			return $name;
107 107
 		}
108 108
 
109
-		if( isset( static::$resolvedInstance[$name] )) {
110
-			return static::$resolvedInstance[$name];
109
+		if( isset( static::$resolvedInstance[ $name ] ) ) {
110
+			return static::$resolvedInstance[ $name ];
111 111
 		}
112 112
 
113
-		return static::$resolvedInstance[$name] = static::$app->make( $name );
113
+		return static::$resolvedInstance[ $name ] = static::$app->make( $name );
114 114
 	}
115 115
 }
Please login to merge, or discard this patch.
src/MetaBox/PostMetaManager.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,19 +16,19 @@  discard block
 block discarded – undo
16 16
 	 * @param string $metaKey
17 17
 	 * @return mixed
18 18
 	 */
19
-	public function get( $metaKey, array $args = [] )
19
+	public function get( $metaKey, array $args = [ ] )
20 20
 	{
21
-		if( empty( $metaKey ))return;
21
+		if( empty( $metaKey ) )return;
22 22
 
23 23
 		$args = $this->normalize( $args );
24
-		$metaKey = $this->buildMetaKey( $metaKey, $args['prefix'] );
25
-		$metaValue = get_post_meta( $args['id'], $metaKey, $args['single'] );
24
+		$metaKey = $this->buildMetaKey( $metaKey, $args[ 'prefix' ] );
25
+		$metaValue = get_post_meta( $args[ 'id' ], $metaKey, $args[ 'single' ] );
26 26
 
27
-		if( is_string( $metaValue )) {
27
+		if( is_string( $metaValue ) ) {
28 28
 			$metaValue = trim( $metaValue );
29 29
 		}
30 30
 		return empty( $metaValue )
31
-			? $args['fallback']
31
+			? $args[ 'fallback' ]
32 32
 			: $metaValue;
33 33
 	}
34 34
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 	 */
40 40
 	protected function buildMetaKey( $metaKey, $prefix )
41 41
 	{
42
-		return ( substr( $metaKey, 0, 1 ) == '_' && !empty( $prefix ))
42
+		return ( substr( $metaKey, 0, 1 ) == '_' && !empty( $prefix ) )
43 43
 			? sprintf( '_%s%s', rtrim( $prefix, '_' ), $metaKey )
44 44
 			: $prefix . $metaKey;
45 45
 	}
@@ -55,6 +55,6 @@  discard block
 block discarded – undo
55 55
 			'single'   => true,
56 56
 			'prefix'   => Application::prefix(),
57 57
 		];
58
-		return shortcode_atts( $defaults, array_change_key_case( $args ));
58
+		return shortcode_atts( $defaults, array_change_key_case( $args ) );
59 59
 	}
60 60
 }
Please login to merge, or discard this patch.
src/MetaBox/ArchiveMetaManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
 	public function __construct()
18 18
 	{
19
-		$this->options = get_option( Archive::id(), [] );
19
+		$this->options = get_option( Archive::id(), [ ] );
20 20
 	}
21 21
 
22 22
 	/**
Please login to merge, or discard this patch.
src/Component.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
 		$data = wp_parse_args( $data, $defaults );
37 37
 		foreach( $defaults as $key => $value ) {
38 38
 			$method = ( new Helper )->buildMethodName( $key, 'normalize' );
39
-			if( method_exists( $this, $method )) {
40
-				$data[$key] = $this->$method( $data[$key], $data, $id );
39
+			if( method_exists( $this, $method ) ) {
40
+				$data[ $key ] = $this->$method( $data[ $key ], $data, $id );
41 41
 			}
42 42
 		}
43 43
 		return $data;
Please login to merge, or discard this patch.
src/Taxonomy/Taxonomy.php 1 patch
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@  discard block
 block discarded – undo
14 14
 
15 15
 	const TAXONOMY_DEFAULTS = [
16 16
 		'hierarchical'      => true,
17
-		'labels'            => [],
17
+		'labels'            => [ ],
18 18
 		'menu_name'         => '',
19 19
 		'plural'            => '',
20
-		'post_types'        => [],
20
+		'post_types'        => [ ],
21 21
 		'public'            => true,
22 22
 		'rewrite'           => true,
23 23
 		'show_admin_column' => true,
@@ -28,20 +28,20 @@  discard block
 block discarded – undo
28 28
 	/**
29 29
 	 * @var array
30 30
 	 */
31
-	public $taxonomies = [];
31
+	public $taxonomies = [ ];
32 32
 
33 33
 	/**
34 34
 	 * {@inheritdoc}
35 35
 	 */
36 36
 	public function init()
37 37
 	{
38
-		if( empty( $this->app->config->taxonomies ))return;
38
+		if( empty( $this->app->config->taxonomies ) )return;
39 39
 
40 40
 		$this->normalize();
41 41
 
42
-		add_action( 'restrict_manage_posts', [ $this, 'printFilters'] );
43
-		add_action( 'init',                  [ $this, 'register'] );
44
-		add_filter( 'parse_query',           [ $this, 'filterByTaxonomy'] );
42
+		add_action( 'restrict_manage_posts', [ $this, 'printFilters' ] );
43
+		add_action( 'init', [ $this, 'register' ] );
44
+		add_filter( 'parse_query', [ $this, 'filterByTaxonomy' ] );
45 45
 	}
46 46
 
47 47
 	/**
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
 		if( !is_admin() || ( new Helper )->getCurrentScreen()->base != 'edit' )return;
54 54
 		$vars = &$query->query_vars;
55 55
 		foreach( array_keys( $this->taxonomies ) as $taxonomy ) {
56
-			if( !isset( $vars[$taxonomy] ))return;
57
-			if( $term = get_term_by( 'id', $vars[$taxonomy], $taxonomy )) {
58
-				$vars[$taxonomy] = $term->slug;
56
+			if( !isset( $vars[ $taxonomy ] ) )return;
57
+			if( $term = get_term_by( 'id', $vars[ $taxonomy ], $taxonomy ) ) {
58
+				$vars[ $taxonomy ] = $term->slug;
59 59
 			}
60 60
 		}
61 61
 		return $query;
@@ -69,18 +69,18 @@  discard block
 block discarded – undo
69 69
 	{
70 70
 		global $wp_query;
71 71
 		foreach( $this->taxonomies as $taxonomy => $args ) {
72
-			if( !in_array( get_current_screen()->post_type, $args['post_types'] ))continue;
73
-			$selected = isset( $wp_query->query[$taxonomy] )
74
-				? $wp_query->query[$taxonomy]
72
+			if( !in_array( get_current_screen()->post_type, $args[ 'post_types' ] ) )continue;
73
+			$selected = isset( $wp_query->query[ $taxonomy ] )
74
+				? $wp_query->query[ $taxonomy ]
75 75
 				: false;
76
-			wp_dropdown_categories([
76
+			wp_dropdown_categories( [
77 77
 				'hide_if_empty' => true,
78 78
 				'name' => $taxonomy,
79 79
 				'orderby' => 'name',
80 80
 				'selected' => $selected,
81
-				'show_option_all' => $args['labels']['all_items'],
81
+				'show_option_all' => $args[ 'labels' ][ 'all_items' ],
82 82
 				'taxonomy' => $taxonomy,
83
-			]);
83
+			] );
84 84
 		}
85 85
 	}
86 86
 
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
 	public function register()
92 92
 	{
93 93
 		array_walk( $this->taxonomies, function( $args, $taxonomy ) {
94
-			register_taxonomy( $taxonomy, $args['post_types'], array_diff_key( $args, array_flip( static::CUSTOM_KEYS )));
95
-			foreach( $args['post_types'] as $type ) {
94
+			register_taxonomy( $taxonomy, $args[ 'post_types' ], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ) ) );
95
+			foreach( $args[ 'post_types' ] as $type ) {
96 96
 				register_taxonomy_for_object_type( $taxonomy, $type );
97 97
 			}
98 98
 		});
@@ -104,13 +104,13 @@  discard block
 block discarded – undo
104 104
 	protected function normalize()
105 105
 	{
106 106
 		foreach( $this->app->config->taxonomies as $taxonomy => $args ) {
107
-			$this->taxonomies[$taxonomy] = apply_filters( 'pollux/taxonomy/args',
107
+			$this->taxonomies[ $taxonomy ] = apply_filters( 'pollux/taxonomy/args',
108 108
 				$this->normalizeThis( $args, static::TAXONOMY_DEFAULTS, $taxonomy )
109 109
 			);
110 110
 		}
111 111
 		$this->taxonomies = array_diff_key(
112 112
 			$this->taxonomies,
113
-			get_taxonomies( ['_builtin' => true] )
113
+			get_taxonomies( [ '_builtin' => true ] )
114 114
 		);
115 115
 	}
116 116
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	 */
121 121
 	protected function normalizeLabels( $labels, array $args )
122 122
 	{
123
-		return wp_parse_args( $labels, $this->setLabels( $args ));
123
+		return wp_parse_args( $labels, $this->setLabels( $args ) );
124 124
 	}
125 125
 
126 126
 	/**
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 	protected function normalizeMenuName( $menuname, array $args )
131 131
 	{
132 132
 		return empty( $menuname )
133
-			? $args['plural']
133
+			? $args[ 'plural' ]
134 134
 			: $menuname;
135 135
 	}
136 136
 
@@ -149,17 +149,17 @@  discard block
 block discarded – undo
149 149
 	protected function setLabels( array $args )
150 150
 	{
151 151
 		return apply_filters( 'pollux/taxonomy/labels', [
152
-			'add_new_item' => sprintf( _x( 'Add New %s', 'Add new taxonomy', 'pollux' ), $args['single'] ),
153
-			'all_items' => sprintf( _x( 'All %s', 'All taxonomies', 'pollux' ), $args['plural'] ),
154
-			'edit_item' => sprintf( _x( 'Edit %s', 'Edit taxonomy', 'pollux' ), $args['single'] ),
155
-			'menu_name' => $this->normalizeMenuName( $args['menu_name'], $args ),
156
-			'name' => $args['plural'],
157
-			'new_item_name' => sprintf( _x( 'New %s Name', 'New taxonomy name', 'pollux' ), $args['single'] ),
158
-			'not_found' => sprintf( _x( 'No %s found', 'No taxonomies found', 'pollux' ), $args['plural'] ),
159
-			'search_items' => sprintf( _x( 'Search %s', 'Search taxonomies', 'pollux' ), $args['plural'] ),
160
-			'singular_name' => $args['single'],
161
-			'update_item' => sprintf( _x( 'Update %s', 'Update taxonomy', 'pollux' ), $args['single'] ),
162
-			'view_item' => sprintf( _x( 'View %s', 'View taxonomy', 'pollux' ), $args['single'] ),
152
+			'add_new_item' => sprintf( _x( 'Add New %s', 'Add new taxonomy', 'pollux' ), $args[ 'single' ] ),
153
+			'all_items' => sprintf( _x( 'All %s', 'All taxonomies', 'pollux' ), $args[ 'plural' ] ),
154
+			'edit_item' => sprintf( _x( 'Edit %s', 'Edit taxonomy', 'pollux' ), $args[ 'single' ] ),
155
+			'menu_name' => $this->normalizeMenuName( $args[ 'menu_name' ], $args ),
156
+			'name' => $args[ 'plural' ],
157
+			'new_item_name' => sprintf( _x( 'New %s Name', 'New taxonomy name', 'pollux' ), $args[ 'single' ] ),
158
+			'not_found' => sprintf( _x( 'No %s found', 'No taxonomies found', 'pollux' ), $args[ 'plural' ] ),
159
+			'search_items' => sprintf( _x( 'Search %s', 'Search taxonomies', 'pollux' ), $args[ 'plural' ] ),
160
+			'singular_name' => $args[ 'single' ],
161
+			'update_item' => sprintf( _x( 'Update %s', 'Update taxonomy', 'pollux' ), $args[ 'single' ] ),
162
+			'view_item' => sprintf( _x( 'View %s', 'View taxonomy', 'pollux' ), $args[ 'single' ] ),
163 163
 		], $args );
164 164
 	}
165 165
 }
Please login to merge, or discard this patch.
helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if( !function_exists( 'pollux_app' )) {
3
+if( !function_exists( 'pollux_app' ) ) {
4 4
 	function pollux_app() {
5 5
 		return GeminiLabs\Pollux\Application::getInstance();
6 6
 	}
Please login to merge, or discard this patch.
pollux.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
 
28 28
 $app = Application::getInstance();
29 29
 
30
-register_activation_hook( __FILE__, array( $app, 'onActivation' ));
31
-register_deactivation_hook( __FILE__, array( $app, 'onDeactivation' ));
30
+register_activation_hook( __FILE__, array( $app, 'onActivation' ) );
31
+register_deactivation_hook( __FILE__, array( $app, 'onDeactivation' ) );
32 32
 
33 33
 if( $app->gatekeeper->canActivate() ) {
34 34
 	$app->register( new Provider );
Please login to merge, or discard this patch.