Completed
Pull Request — master (#6)
by James
46:36
created
src/Core/Loader.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -33,19 +33,19 @@  discard block
 block discarded – undo
33 33
 	 * {@inheritDoc}
34 34
 	 */
35 35
 	public function run() {
36
-		foreach ( $this->actions as $action ) {
36
+		foreach ($this->actions as $action) {
37 37
 			add_action(
38 38
 				$action['hook'],
39
-				array( $action['service'], $action['method'] ),
39
+				array($action['service'], $action['method']),
40 40
 				$action['priority'],
41 41
 				$action['args']
42 42
 			);
43 43
 		}
44 44
 
45
-		foreach ( $this->filters as $filter ) {
45
+		foreach ($this->filters as $filter) {
46 46
 			add_filter(
47 47
 				$filter['hook'],
48
-				array( $filter['service'], $filter['method'] ),
48
+				array($filter['service'], $filter['method']),
49 49
 				$filter['priority'],
50 50
 				$filter['args']
51 51
 			);
@@ -57,15 +57,15 @@  discard block
 block discarded – undo
57 57
 	 *
58 58
 	 * @param HasActions $service
59 59
 	 */
60
-	public function register_actions( HasActions $service ) {
61
-		foreach ( $service->action_hooks() as $action ) {
60
+	public function register_actions(HasActions $service) {
61
+		foreach ($service->action_hooks() as $action) {
62 62
 			$this->actions = $this->add(
63 63
 				$this->actions,
64 64
 				$action['hook'],
65 65
 				$service,
66 66
 				$action['method'],
67
-				isset( $action['priority'] ) ? $action['priority'] : 10,
68
-				isset( $action['args'] ) ? $action['args'] : 1
67
+				isset($action['priority']) ? $action['priority'] : 10,
68
+				isset($action['args']) ? $action['args'] : 1
69 69
 			);
70 70
 		}
71 71
 	}
@@ -75,15 +75,15 @@  discard block
 block discarded – undo
75 75
 	 *
76 76
 	 * @param HasFilters $service
77 77
 	 */
78
-	public function register_filters( HasFilters $service ) {
79
-		foreach ( $service->filter_hooks() as $filter ) {
78
+	public function register_filters(HasFilters $service) {
79
+		foreach ($service->filter_hooks() as $filter) {
80 80
 			$this->filters = $this->add(
81 81
 				$this->filters,
82 82
 				$filter['hook'],
83 83
 				$service,
84 84
 				$filter['method'],
85
-				isset( $filter['priority'] ) ? $filter['priority'] : 10,
86
-				isset( $filter['args'] ) ? $filter['args'] : 1
85
+				isset($filter['priority']) ? $filter['priority'] : 10,
86
+				isset($filter['args']) ? $filter['args'] : 1
87 87
 			);
88 88
 		}
89 89
 	}
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
 	 *
94 94
 	 * @param HasShortcode $service
95 95
 	 */
96
-	public function register_shortcode( HasShortcode $service ) {
97
-		add_shortcode( $service->shortcode_name(), array( $service, 'do_shortcode' ) );
96
+	public function register_shortcode(HasShortcode $service) {
97
+		add_shortcode($service->shortcode_name(), array($service, 'do_shortcode'));
98 98
 	}
99 99
 
100 100
 	/**
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 	 *
110 110
 	 * @return array
111 111
 	 */
112
-	protected function add( $hooks, $hook, $service, $method, $priority, $accepted_args ) {
112
+	protected function add($hooks, $hook, $service, $method, $priority, $accepted_args) {
113 113
 		$hooks[] = array(
114 114
 			'hook'     => $hook,
115 115
 			'service'  => $service,
Please login to merge, or discard this patch.
src/Core/Container.php 1 patch
Spacing   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -71,17 +71,17 @@  discard block
 block discarded – undo
71 71
 	 *
72 72
 	 * @param ServiceProvider[]|string[] $providers
73 73
 	 */
74
-	public function __construct( array $providers = array() ) {
74
+	public function __construct(array $providers = array()) {
75 75
 		// array_unique ensures we only register each provider once.
76
-		$providers = array_unique( array_merge( $this->providers, $providers ) );
76
+		$providers = array_unique(array_merge($this->providers, $providers));
77 77
 
78
-		foreach ( $providers as $provider ) {
79
-			if ( is_string( $provider ) && class_exists( $provider ) ) {
78
+		foreach ($providers as $provider) {
79
+			if (is_string($provider) && class_exists($provider)) {
80 80
 				$provider = new $provider;
81 81
 			}
82 82
 
83
-			if ( $provider instanceof ServiceProvider ) {
84
-				$this->register( $provider );
83
+			if ($provider instanceof ServiceProvider) {
84
+				$this->register($provider);
85 85
 			}
86 86
 		}
87 87
 	}
@@ -97,27 +97,27 @@  discard block
 block discarded – undo
97 97
 	 *
98 98
 	 * @return $this
99 99
 	 */
100
-	public function define( $alias, $definition ) {
101
-		if ( is_array( $alias ) ) {
102
-			$class = current( $alias );
103
-			$alias = key( $alias );
100
+	public function define($alias, $definition) {
101
+		if (is_array($alias)) {
102
+			$class = current($alias);
103
+			$alias = key($alias);
104 104
 		}
105 105
 
106
-		if ( isset( $this->aliases[ $alias ] ) ) {
107
-			throw new DefinedAliasException( $alias );
106
+		if (isset($this->aliases[$alias])) {
107
+			throw new DefinedAliasException($alias);
108 108
 		}
109 109
 
110
-		$this->aliases[ $alias ]     = true;
111
-		$this->definitions[ $alias ] = $definition;
110
+		$this->aliases[$alias]     = true;
111
+		$this->definitions[$alias] = $definition;
112 112
 
113 113
 		// Closures are treated as factories unless
114 114
 		// defined via Container::share.
115
-		if ( ! $definition instanceof \Closure ) {
116
-			$this->shared[ $alias ] = true;
115
+		if (!$definition instanceof \Closure) {
116
+			$this->shared[$alias] = true;
117 117
 		}
118 118
 
119
-		if ( isset( $class ) ) {
120
-			$this->classes[ $class ] = $alias;
119
+		if (isset($class)) {
120
+			$this->classes[$class] = $alias;
121 121
 		}
122 122
 
123 123
 		return $this;
@@ -133,14 +133,14 @@  discard block
 block discarded – undo
133 133
 	 *
134 134
 	 * @return $this
135 135
 	 */
136
-	public function share( $alias, $definition ) {
137
-		$this->define( $alias, $definition );
136
+	public function share($alias, $definition) {
137
+		$this->define($alias, $definition);
138 138
 
139
-		if ( is_array( $alias ) ) {
140
-			$alias = key( $alias );
139
+		if (is_array($alias)) {
140
+			$alias = key($alias);
141 141
 		}
142 142
 
143
-		$this->shared[ $alias ] = true;
143
+		$this->shared[$alias] = true;
144 144
 
145 145
 		return $this;
146 146
 	}
@@ -154,32 +154,32 @@  discard block
 block discarded – undo
154 154
 	 *
155 155
 	 * @return mixed
156 156
 	 */
157
-	public function fetch( $alias ) {
158
-		if ( isset( $this->classes[ $alias ] ) ) {
157
+	public function fetch($alias) {
158
+		if (isset($this->classes[$alias])) {
159 159
 			// If the alias is a class name,
160 160
 			// then retrieve its linked alias.
161 161
 			// This is only registered when
162 162
 			// registering using an array.
163
-			$alias = $this->classes[ $alias ];
163
+			$alias = $this->classes[$alias];
164 164
 		}
165 165
 
166
-		if ( ! isset( $this->aliases[ $alias ] ) ) {
167
-			throw new UndefinedAliasException( $alias );
166
+		if (!isset($this->aliases[$alias])) {
167
+			throw new UndefinedAliasException($alias);
168 168
 		}
169 169
 
170
-		$value = $this->definitions[ $alias ];
170
+		$value = $this->definitions[$alias];
171 171
 
172 172
 		// If the shared value is a closure,
173 173
 		// execute it and assign the result
174 174
 		// in place of the closure.
175
-		if ( $value instanceof \Closure ) {
175
+		if ($value instanceof \Closure) {
176 176
 			$factory = $value;
177
-			$value   = $factory( $this );
177
+			$value   = $factory($this);
178 178
 		}
179 179
 
180 180
 		// If the value is shared, save the shared value.
181
-		if ( isset( $this->shared[ $alias ] ) ) {
182
-			$this->definitions[ $alias ] = $value;
181
+		if (isset($this->shared[$alias])) {
182
+			$this->definitions[$alias] = $value;
183 183
 		}
184 184
 
185 185
 		// Return the fetched value.
@@ -193,8 +193,8 @@  discard block
 block discarded – undo
193 193
 	 *
194 194
 	 * @return bool
195 195
 	 */
196
-	public function has( $alias ) {
197
-		return isset( $this->aliases[ $alias ] );
196
+	public function has($alias) {
197
+		return isset($this->aliases[$alias]);
198 198
 	}
199 199
 
200 200
 	/**
@@ -204,8 +204,8 @@  discard block
 block discarded – undo
204 204
 	 *
205 205
 	 * @return $this
206 206
 	 */
207
-	public function remove( $alias ) {
208
-		if ( isset( $this->aliases[ $alias ] ) ) {
207
+	public function remove($alias) {
208
+		if (isset($this->aliases[$alias])) {
209 209
 			/**
210 210
 			 * If there's no reference in the aliases array,
211 211
 			 * the service won't be found on fetching and
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 			 *
221 221
 			 * If this is a problem, this may need to be revisited.
222 222
 			 */
223
-			unset( $this->aliases[ $alias ] );
223
+			unset($this->aliases[$alias]);
224 224
 		}
225 225
 
226 226
 		return $this;
@@ -233,9 +233,9 @@  discard block
 block discarded – undo
233 233
 	 *
234 234
 	 * @return $this
235 235
 	 */
236
-	public function register( ServiceProvider $provider ) {
236
+	public function register(ServiceProvider $provider) {
237 237
 		// @todo make sure provider is only registered once
238
-		$provider->register( $this );
238
+		$provider->register($this);
239 239
 
240 240
 		return $this;
241 241
 	}
@@ -248,8 +248,8 @@  discard block
 block discarded – undo
248 248
 	 *
249 249
 	 * @see    define
250 250
 	 */
251
-	public function offsetSet( $id, $value ) {
252
-		$this->define( $id, $value );
251
+	public function offsetSet($id, $value) {
252
+		$this->define($id, $value);
253 253
 	}
254 254
 
255 255
 	/**
@@ -262,8 +262,8 @@  discard block
 block discarded – undo
262 262
 	 *
263 263
 	 * @see    fetch
264 264
 	 */
265
-	public function offsetGet( $id ) {
266
-		return $this->fetch( $id );
265
+	public function offsetGet($id) {
266
+		return $this->fetch($id);
267 267
 	}
268 268
 
269 269
 	/**
@@ -275,8 +275,8 @@  discard block
 block discarded – undo
275 275
 	 *
276 276
 	 * @see    has
277 277
 	 */
278
-	public function offsetExists( $id ) {
279
-		return $this->has( $id );
278
+	public function offsetExists($id) {
279
+		return $this->has($id);
280 280
 	}
281 281
 
282 282
 	/**
@@ -286,8 +286,8 @@  discard block
 block discarded – undo
286 286
 	 *
287 287
 	 * @see   remove
288 288
 	 */
289
-	public function offsetUnset( $id ) {
290
-		$this->remove( $id );
289
+	public function offsetUnset($id) {
290
+		$this->remove($id);
291 291
 	}
292 292
 
293 293
 	/**
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
 	 */
296 296
 	public function rewind() {
297 297
 		$this->position = 0;
298
-		$this->keys     = array_keys( $this->aliases );
298
+		$this->keys     = array_keys($this->aliases);
299 299
 	}
300 300
 
301 301
 	/**
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
 	 * @return object
305 305
 	 */
306 306
 	public function current() {
307
-		return $this->fetch( $this->keys[ $this->position ] );
307
+		return $this->fetch($this->keys[$this->position]);
308 308
 	}
309 309
 
310 310
 	/**
@@ -313,14 +313,14 @@  discard block
 block discarded – undo
313 313
 	 * @return string
314 314
 	 */
315 315
 	public function key() {
316
-		return $this->keys[ $this->position ];
316
+		return $this->keys[$this->position];
317 317
 	}
318 318
 
319 319
 	/**
320 320
 	 * Increments to the next step in the loop.
321 321
 	 */
322 322
 	public function next() {
323
-		$this->position ++;
323
+		$this->position++;
324 324
 	}
325 325
 
326 326
 	/**
@@ -329,6 +329,6 @@  discard block
 block discarded – undo
329 329
 	 * @return bool
330 330
 	 */
331 331
 	public function valid() {
332
-		return isset( $this->keys[ $this->position ] );
332
+		return isset($this->keys[$this->position]);
333 333
 	}
334 334
 }
Please login to merge, or discard this patch.
src/Utility/Str.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
 	 *
20 20
 	 * @return bool
21 21
 	 */
22
-	public static function starts_with( $haystack, $needles ) {
23
-		foreach ( (array) $needles as $needle ) {
24
-			if ( '' !== $needle && 0 === strpos( $haystack, $needle ) ) {
22
+	public static function starts_with($haystack, $needles) {
23
+		foreach ((array) $needles as $needle) {
24
+			if ('' !== $needle && 0 === strpos($haystack, $needle)) {
25 25
 				return true;
26 26
 			}
27 27
 		}
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
 	 *
38 38
 	 * @return bool
39 39
 	 */
40
-	public static function ends_with( $haystack, $needles ) {
41
-		foreach ( (array) $needles as $needle ) {
42
-			if ( substr( $haystack, - strlen( $needle ) ) === (string) $needle ) {
40
+	public static function ends_with($haystack, $needles) {
41
+		foreach ((array) $needles as $needle) {
42
+			if (substr($haystack, - strlen($needle)) === (string) $needle) {
43 43
 				return true;
44 44
 			}
45 45
 		}
Please login to merge, or discard this patch.
src/Core/Application.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -36,21 +36,21 @@  discard block
 block discarded – undo
36 36
 	 *
37 37
 	 * @throws ApplicationAlreadyBootedException
38 38
 	 */
39
-	public function __construct( $file, array $providers = array() ) {
40
-		if ( null !== static::$instance ) {
39
+	public function __construct($file, array $providers = array()) {
40
+		if (null !== static::$instance) {
41 41
 			throw new ApplicationAlreadyBootedException;
42 42
 		}
43 43
 
44 44
 		static::$instance = $this;
45 45
 
46
-		$this->register_constants( $file );
46
+		$this->register_constants($file);
47 47
 		$this->register_core_services();
48 48
 		$this->load_i18n();
49 49
 
50
-		register_activation_hook( $file, array( $this, 'activate' ) );
51
-		register_deactivation_hook( $file, array( $this, 'deactivate' ) );
50
+		register_activation_hook($file, array($this, 'activate'));
51
+		register_deactivation_hook($file, array($this, 'deactivate'));
52 52
 
53
-		parent::__construct( $providers );
53
+		parent::__construct($providers);
54 54
 	}
55 55
 
56 56
 	/**
@@ -59,27 +59,27 @@  discard block
 block discarded – undo
59 59
 	 * @throws UnexpectedValueException
60 60
 	 */
61 61
 	public function boot() {
62
-		$loader = $this->fetch( 'loader' );
62
+		$loader = $this->fetch('loader');
63 63
 
64
-		if ( ! $loader instanceof LoaderContract ) {
64
+		if (!$loader instanceof LoaderContract) {
65 65
 			throw new UnexpectedValueException;
66 66
 		}
67 67
 
68
-		foreach ( $this as $alias => $value ) {
69
-			if ( $value instanceof HasActions ) {
70
-				$loader->register_actions( $value );
68
+		foreach ($this as $alias => $value) {
69
+			if ($value instanceof HasActions) {
70
+				$loader->register_actions($value);
71 71
 			}
72 72
 
73
-			if ( $value instanceof HasFilters ) {
74
-				$loader->register_filters( $value );
73
+			if ($value instanceof HasFilters) {
74
+				$loader->register_filters($value);
75 75
 			}
76 76
 
77
-			if ( $value instanceof HasShortcode ) {
78
-				$loader->register_shortcode( $value );
77
+			if ($value instanceof HasShortcode) {
78
+				$loader->register_shortcode($value);
79 79
 			}
80 80
 		}
81 81
 
82
-		add_action( 'plugins_loaded', array( $loader, 'run' ) );
82
+		add_action('plugins_loaded', array($loader, 'run'));
83 83
 	}
84 84
 
85 85
 	/**
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 	 * @throws ApplicationNotBootedException
108 108
 	 */
109 109
 	public static function instance() {
110
-		if ( null === static::$instance ) {
110
+		if (null === static::$instance) {
111 111
 			throw new ApplicationNotBootedException;
112 112
 		}
113 113
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 	 * {@inheritDoc}
119 119
 	 */
120 120
 	public static function shutdown() {
121
-		if ( null !== static::$instance ) {
121
+		if (null !== static::$instance) {
122 122
 			static::$instance = null;
123 123
 		}
124 124
 	}
@@ -128,20 +128,20 @@  discard block
 block discarded – undo
128 128
 	 *
129 129
 	 * @param string $file
130 130
 	 */
131
-	private function register_constants( $file ) {
132
-		$this->share( 'url', plugin_dir_url( $file ) );
133
-		$this->share( 'path', plugin_dir_path( $file ) );
134
-		$this->share( 'basename', $basename = plugin_basename( $file ) );
135
-		$this->share( 'slug', dirname( $basename ) );
136
-		$this->share( 'version', static::VERSION );
131
+	private function register_constants($file) {
132
+		$this->share('url', plugin_dir_url($file));
133
+		$this->share('path', plugin_dir_path($file));
134
+		$this->share('basename', $basename = plugin_basename($file));
135
+		$this->share('slug', dirname($basename));
136
+		$this->share('version', static::VERSION);
137 137
 	}
138 138
 
139 139
 	/**
140 140
 	 * Registers the built-in services with the Application container.
141 141
 	 */
142 142
 	private function register_core_services() {
143
-		$this->share( array( 'loader' => 'Intraxia\Jaxion\Contract\Core\Loader' ), function ( $app ) {
144
-			return new Loader( $app );
143
+		$this->share(array('loader' => 'Intraxia\Jaxion\Contract\Core\Loader'), function($app) {
144
+			return new Loader($app);
145 145
 		} );
146 146
 	}
147 147
 
@@ -150,9 +150,9 @@  discard block
 block discarded – undo
150 150
 	 */
151 151
 	private function load_i18n() {
152 152
 		load_plugin_textdomain(
153
-			$this->fetch( 'basename' ),
153
+			$this->fetch('basename'),
154 154
 			false,
155
-			basename( $this->fetch( 'path' ) ) . '/languages/'
155
+			basename($this->fetch('path')).'/languages/'
156 156
 		);
157 157
 	}
158 158
 }
Please login to merge, or discard this patch.
src/Assets/Register.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
 	 * @param string $url
60 60
 	 * @param string $version
61 61
 	 */
62
-	public function __construct( $url, $version = null ) {
62
+	public function __construct($url, $version = null) {
63 63
 		$this->url = $url;
64
-		$this->version = $version ? : null; // Empty string should remain null.
64
+		$this->version = $version ?: null; // Empty string should remain null.
65 65
 	}
66 66
 
67 67
 	/**
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
 	 *
70 70
 	 * @param bool $debug
71 71
 	 */
72
-	public function set_debug( $debug ) {
73
-		if ( $debug ) {
72
+	public function set_debug($debug) {
73
+		if ($debug) {
74 74
 			$this->min = '.min';
75 75
 		} else {
76 76
 			$this->min = '';
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 	 *
83 83
 	 * @param array $script
84 84
 	 */
85
-	public function register_script( $script ) {
85
+	public function register_script($script) {
86 86
 		$this->scripts[] = $script;
87 87
 	}
88 88
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 	 *
92 92
 	 * @param array $style
93 93
 	 */
94
-	public function register_style( $style ) {
94
+	public function register_style($style) {
95 95
 		$this->styles[] = $style;
96 96
 	}
97 97
 
@@ -99,9 +99,9 @@  discard block
 block discarded – undo
99 99
 	 * {@inheritDoc}
100 100
 	 */
101 101
 	public function enqueue_web_scripts() {
102
-		foreach ( $this->scripts as $script ) {
103
-			if ( in_array( $script['type'], array( 'web', 'shared' ) ) ) {
104
-				$this->enqueue_script( $script );
102
+		foreach ($this->scripts as $script) {
103
+			if (in_array($script['type'], array('web', 'shared'))) {
104
+				$this->enqueue_script($script);
105 105
 			}
106 106
 		}
107 107
 	}
@@ -110,9 +110,9 @@  discard block
 block discarded – undo
110 110
 	 * {@inheritDoc}
111 111
 	 */
112 112
 	public function enqueue_web_styles() {
113
-		foreach ( $this->styles as $style ) {
114
-			if ( in_array( $style['type'], array( 'web', 'shared' ) ) ) {
115
-				$this->enqueue_style( $style );
113
+		foreach ($this->styles as $style) {
114
+			if (in_array($style['type'], array('web', 'shared'))) {
115
+				$this->enqueue_style($style);
116 116
 			}
117 117
 		}
118 118
 	}
@@ -121,9 +121,9 @@  discard block
 block discarded – undo
121 121
 	 * {@inheritDoc}
122 122
 	 */
123 123
 	public function enqueue_admin_scripts() {
124
-		foreach ( $this->scripts as $script ) {
125
-			if ( in_array( $script['type'], array( 'admin', 'shared' ) ) ) {
126
-				$this->enqueue_script( $script );
124
+		foreach ($this->scripts as $script) {
125
+			if (in_array($script['type'], array('admin', 'shared'))) {
126
+				$this->enqueue_script($script);
127 127
 			}
128 128
 		}
129 129
 	}
@@ -132,9 +132,9 @@  discard block
 block discarded – undo
132 132
 	 * {@inheritDoc}
133 133
 	 */
134 134
 	public function enqueue_admin_styles() {
135
-		foreach ( $this->styles as $style ) {
136
-			if ( in_array( $style['type'], array( 'admin', 'shared' ) ) ) {
137
-				$this->enqueue_style( $style );
135
+		foreach ($this->styles as $style) {
136
+			if (in_array($style['type'], array('admin', 'shared'))) {
137
+				$this->enqueue_style($style);
138 138
 			}
139 139
 		}
140 140
 	}
@@ -170,19 +170,19 @@  discard block
 block discarded – undo
170 170
 	 *
171 171
 	 * @param array $script
172 172
 	 */
173
-	protected function enqueue_script( $script ) {
174
-		if ( $script['condition']() ) {
173
+	protected function enqueue_script($script) {
174
+		if ($script['condition']()) {
175 175
 			wp_enqueue_script(
176 176
 				$script['handle'],
177
-				$this->url . $script['src'] . '.js',
178
-				isset( $script['deps'] ) ? $script['deps'] : array(),
177
+				$this->url.$script['src'].'.js',
178
+				isset($script['deps']) ? $script['deps'] : array(),
179 179
 				$this->version,
180
-				isset( $script['footer'] ) ? $script['footer'] : false
180
+				isset($script['footer']) ? $script['footer'] : false
181 181
 			);
182 182
 
183
-			if ( isset( $script['localize'] ) ) {
184
-				if ( is_callable( $script['localize'] ) ) { // @todo make all properties callables
185
-					$script['localize'] = call_user_func( $script['localize'] );
183
+			if (isset($script['localize'])) {
184
+				if (is_callable($script['localize'])) { // @todo make all properties callables
185
+					$script['localize'] = call_user_func($script['localize']);
186 186
 				}
187 187
 
188 188
 				wp_localize_script(
@@ -199,14 +199,14 @@  discard block
 block discarded – undo
199 199
 	 *
200 200
 	 * @param array $style
201 201
 	 */
202
-	protected function enqueue_style( $style ) {
203
-		if ( $style['condition']() ) {
202
+	protected function enqueue_style($style) {
203
+		if ($style['condition']()) {
204 204
 			wp_enqueue_style(
205 205
 				$style['handle'],
206
-				$this->url . $style['src'] . '.css',
207
-				isset( $style['deps'] ) ? $style['deps'] : array(),
206
+				$this->url.$style['src'].'.css',
207
+				isset($style['deps']) ? $style['deps'] : array(),
208 208
 				$this->version,
209
-				isset( $style['media'] ) ? $style['media'] : 'all'
209
+				isset($style['media']) ? $style['media'] : 'all'
210 210
 			);
211 211
 		}
212 212
 	}
Please login to merge, or discard this patch.
src/Http/Router.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 *
74 74
 	 * @return $this
75 75
 	 */
76
-	public function set_vendor( $vendor ) {
76
+	public function set_vendor($vendor) {
77 77
 		$this->vendor = $vendor;
78 78
 
79 79
 		return $this;
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	 *
87 87
 	 * @return $this
88 88
 	 */
89
-	public function set_version( $version ) {
89
+	public function set_version($version) {
90 90
 		$this->version = $version;
91 91
 
92 92
 		return $this;
@@ -102,15 +102,15 @@  discard block
 block discarded – undo
102 102
 	 * @throws VersionNotSetException
103 103
 	 */
104 104
 	public function register() {
105
-		if ( ! $this->vendor ) {
105
+		if (!$this->vendor) {
106 106
 			throw new VendorNotSetException;
107 107
 		}
108 108
 
109
-		if ( ! $this->version ) {
109
+		if (!$this->version) {
110 110
 			throw new VersionNotSetException;
111 111
 		}
112 112
 
113
-		foreach ( $this->endpoints as $endpoint ) {
113
+		foreach ($this->endpoints as $endpoint) {
114 114
 			register_rest_route(
115 115
 				$this->get_namespace(),
116 116
 				$endpoint->get_route(),
@@ -128,13 +128,13 @@  discard block
 block discarded – undo
128 128
 	 * @param array    $options
129 129
 	 * @param callable $callback
130 130
 	 */
131
-	public function group( array $options, $callback ) {
131
+	public function group(array $options, $callback) {
132 132
 		$router = new static;
133 133
 
134
-		call_user_func( $callback, $router );
134
+		call_user_func($callback, $router);
135 135
 
136
-		foreach ( $router->get_endpoints() as $endpoint ) {
137
-			$this->endpoints[] = $this->set_options( $endpoint, $options );
136
+		foreach ($router->get_endpoints() as $endpoint) {
137
+			$this->endpoints[] = $this->set_options($endpoint, $options);
138 138
 		}
139 139
 	}
140 140
 
@@ -153,26 +153,26 @@  discard block
 block discarded – undo
153 153
 	 * @throws MissingArgumentException
154 154
 	 * @throws InvalidArgumentException
155 155
 	 */
156
-	public function __call( $name, $arguments ) {
157
-		if ( ! in_array( $name, array_keys( $this->methods ) ) ) {
156
+	public function __call($name, $arguments) {
157
+		if (!in_array($name, array_keys($this->methods))) {
158 158
 			throw new UnknownMethodException;
159 159
 		}
160 160
 
161 161
 		// array_merge ensures we have 3 elements
162
-		list( $route, $callback, $options ) = array_merge( $arguments, array( null, null, null ) );
162
+		list($route, $callback, $options) = array_merge($arguments, array(null, null, null));
163 163
 
164
-		if ( ! $route || ! $callback ) {
164
+		if (!$route || !$callback) {
165 165
 			throw new MissingArgumentException;
166 166
 		}
167 167
 
168
-		if ( ! is_callable( $callback ) ) {
168
+		if (!is_callable($callback)) {
169 169
 			throw new InvalidArgumentException;
170 170
 		}
171 171
 
172
-		$endpoint = new Endpoint( $route, $this->methods[ $name ], $callback );
172
+		$endpoint = new Endpoint($route, $this->methods[$name], $callback);
173 173
 
174
-		if ( $options && is_array( $options ) ) {
175
-			$endpoint = $this->set_options( $endpoint, $options );
174
+		if ($options && is_array($options)) {
175
+			$endpoint = $this->set_options($endpoint, $options);
176 176
 		}
177 177
 
178 178
 		return $this->endpoints[] = $endpoint;
@@ -189,17 +189,17 @@  discard block
 block discarded – undo
189 189
 	 * @return Endpoint
190 190
 	 * @throws MalformedRouteException
191 191
 	 */
192
-	protected function set_options( Endpoint $endpoint, array $options ) {
193
-		if ( isset( $options['guard'] ) ) {
194
-			$endpoint->set_guard( $options['guard'] );
192
+	protected function set_options(Endpoint $endpoint, array $options) {
193
+		if (isset($options['guard'])) {
194
+			$endpoint->set_guard($options['guard']);
195 195
 		}
196 196
 
197
-		if ( isset( $options['filter'] ) ) {
198
-			$endpoint->set_filter( $options['filter'] );
197
+		if (isset($options['filter'])) {
198
+			$endpoint->set_filter($options['filter']);
199 199
 		}
200 200
 
201
-		if ( isset( $options['prefix'] ) ) {
202
-			$endpoint->set_prefix( $options['prefix'] );
201
+		if (isset($options['prefix'])) {
202
+			$endpoint->set_prefix($options['prefix']);
203 203
 		}
204 204
 
205 205
 		return $endpoint;
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 	 * @return string
212 212
 	 */
213 213
 	protected function get_namespace() {
214
-		return $this->vendor . '/v' . $this->version;
214
+		return $this->vendor.'/v'.$this->version;
215 215
 	}
216 216
 
217 217
 	/**
Please login to merge, or discard this patch.
src/Http/Endpoint.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
 	 *
66 66
 	 * @throws MalformedRouteException
67 67
 	 */
68
-	public function __construct( $route, $method, $callback ) {
69
-		if ( ! Str::starts_with( $route, '/' ) || Str::ends_with( $route, '/' ) ) {
68
+	public function __construct($route, $method, $callback) {
69
+		if (!Str::starts_with($route, '/') || Str::ends_with($route, '/')) {
70 70
 			throw new MalformedRouteException;
71 71
 		}
72 72
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	 * @return string
84 84
 	 */
85 85
 	public function get_route() {
86
-		return ( $this->prefix ?: '' ) . $this->route;
86
+		return ($this->prefix ?: '').$this->route;
87 87
 	}
88 88
 
89 89
 	/**
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
 			'callback' => $this->callback,
98 98
 		);
99 99
 
100
-		if ( $this->guard ) {
101
-			$options['permission_callback'] = array( $this->guard, 'authorized' );
100
+		if ($this->guard) {
101
+			$options['permission_callback'] = array($this->guard, 'authorized');
102 102
 		}
103 103
 
104
-		if ( $this->filter ) {
104
+		if ($this->filter) {
105 105
 			$options['args'] = $this->filter->rules();
106 106
 		}
107 107
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	 *
116 116
 	 * @return $this
117 117
 	 */
118
-	public function set_guard( GuardContract $guard ) {
118
+	public function set_guard(GuardContract $guard) {
119 119
 		$this->guard = $guard;
120 120
 
121 121
 		return $this;
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 	 *
129 129
 	 * @return $this
130 130
 	 */
131
-	public function set_filter( FilterContract $filter ) {
131
+	public function set_filter(FilterContract $filter) {
132 132
 		$this->filter = $filter;
133 133
 
134 134
 		return $this;
@@ -142,8 +142,8 @@  discard block
 block discarded – undo
142 142
 	 * @return $this
143 143
 	 * @throws MalformedRouteException
144 144
 	 */
145
-	public function set_prefix( $prefix ) {
146
-		if ( ! Str::starts_with( $prefix, '/' ) || Str::ends_with( $prefix, '/' ) ) {
145
+	public function set_prefix($prefix) {
146
+		if (!Str::starts_with($prefix, '/') || Str::ends_with($prefix, '/')) {
147 147
 			throw new MalformedRouteException;
148 148
 		}
149 149
 
Please login to merge, or discard this patch.
src/Axolotl/Model.php 1 patch
Spacing   +105 added lines, -105 removed lines patch added patch discarded remove patch
@@ -106,15 +106,15 @@  discard block
 block discarded – undo
106 106
 	 *
107 107
 	 * @param array <string, mixed> $attributes
108 108
 	 */
109
-	public function __construct( array $attributes = array() ) {
109
+	public function __construct(array $attributes = array()) {
110 110
 		$this->maybe_boot();
111 111
 		$this->sync_original();
112 112
 
113
-		if ( $this->uses_wp_object() ) {
113
+		if ($this->uses_wp_object()) {
114 114
 			$this->create_wp_object();
115 115
 		}
116 116
 
117
-		$this->refresh( $attributes );
117
+		$this->refresh($attributes);
118 118
 	}
119 119
 
120 120
 	/**
@@ -127,10 +127,10 @@  discard block
 block discarded – undo
127 127
 	 *
128 128
 	 * @return $this
129 129
 	 */
130
-	public function refresh( array $attributes ) {
130
+	public function refresh(array $attributes) {
131 131
 		$this->clear();
132 132
 
133
-		return $this->merge( $attributes );
133
+		return $this->merge($attributes);
134 134
 	}
135 135
 
136 136
 	/**
@@ -140,9 +140,9 @@  discard block
 block discarded – undo
140 140
 	 *
141 141
 	 * @return $this
142 142
 	 */
143
-	public function merge( array $attributes ) {
144
-		foreach ( $attributes as $name => $value ) {
145
-			$this->set_attribute( $name, $value );
143
+	public function merge(array $attributes) {
144
+		foreach ($attributes as $name => $value) {
145
+			$this->set_attribute($name, $value);
146 146
 		}
147 147
 
148 148
 		return $this;
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 	 * @return array
158 158
 	 */
159 159
 	public function get_table_attributes() {
160
-		return $this->attributes[ self::TABLE_KEY ];
160
+		return $this->attributes[self::TABLE_KEY];
161 161
 	}
162 162
 
163 163
 	/**
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 	 * @return array
167 167
 	 */
168 168
 	public function get_original_table_attributes() {
169
-		return $this->original[ self::TABLE_KEY ];
169
+		return $this->original[self::TABLE_KEY];
170 170
 	}
171 171
 
172 172
 	/**
@@ -179,11 +179,11 @@  discard block
 block discarded – undo
179 179
 	public function get_changed_table_attributes() {
180 180
 		$changed = array();
181 181
 
182
-		foreach ( $this->get_table_attributes() as $attribute ) {
183
-			if ( $this->get_attribute( $attribute ) !==
184
-			     $this->get_original_attribute( $attribute )
182
+		foreach ($this->get_table_attributes() as $attribute) {
183
+			if ($this->get_attribute($attribute) !==
184
+			     $this->get_original_attribute($attribute)
185 185
 			) {
186
-				$changed[ $attribute ] = $this->get_attribute( $attribute );
186
+				$changed[$attribute] = $this->get_attribute($attribute);
187 187
 			}
188 188
 		}
189 189
 
@@ -199,8 +199,8 @@  discard block
 block discarded – undo
199 199
 	 * @return false|WP_Post|WP_Term
200 200
 	 */
201 201
 	public function get_underlying_wp_object() {
202
-		if ( isset( $this->attributes[ self::OBJECT_KEY ] ) ) {
203
-			return $this->attributes[ self::OBJECT_KEY ];
202
+		if (isset($this->attributes[self::OBJECT_KEY])) {
203
+			return $this->attributes[self::OBJECT_KEY];
204 204
 		}
205 205
 
206 206
 		return false;
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 	 * @return WP_Post
213 213
 	 */
214 214
 	public function get_original_underlying_wp_object() {
215
-		return $this->original[ self::OBJECT_KEY ];
215
+		return $this->original[self::OBJECT_KEY];
216 216
 	}
217 217
 
218 218
 	/**
@@ -225,11 +225,11 @@  discard block
 block discarded – undo
225 225
 	public function get_changed_wp_object_attributes() {
226 226
 		$changed = array();
227 227
 
228
-		foreach ( $this->get_wp_object_keys() as $key ) {
229
-			if ( $this->get_attribute( $key ) !==
230
-			     $this->get_original_attribute( $key )
228
+		foreach ($this->get_wp_object_keys() as $key) {
229
+			if ($this->get_attribute($key) !==
230
+			     $this->get_original_attribute($key)
231 231
 			) {
232
-				$changed[ $key ] = $this->get_attribute( $key );
232
+				$changed[$key] = $this->get_attribute($key);
233 233
 			}
234 234
 		}
235 235
 
@@ -244,8 +244,8 @@  discard block
 block discarded – undo
244 244
 	 * @param string $name
245 245
 	 * @param mixed  $value
246 246
 	 */
247
-	public function __set( $name, $value ) {
248
-		$this->set_attribute( $name, $value );
247
+	public function __set($name, $value) {
248
+		$this->set_attribute($name, $value);
249 249
 	}
250 250
 
251 251
 	/**
@@ -262,19 +262,19 @@  discard block
 block discarded – undo
262 262
 	 *
263 263
 	 * @throws GuardedPropertyException
264 264
 	 */
265
-	public function set_attribute( $name, $value ) {
266
-		if ( self::OBJECT_KEY === $name ) {
267
-			return $this->override_wp_object( $value );
265
+	public function set_attribute($name, $value) {
266
+		if (self::OBJECT_KEY === $name) {
267
+			return $this->override_wp_object($value);
268 268
 		}
269 269
 
270
-		if ( ! $this->is_fillable( $name ) ) {
270
+		if (!$this->is_fillable($name)) {
271 271
 			throw new GuardedPropertyException;
272 272
 		}
273 273
 
274
-		if ( $method = $this->has_map_method( $name ) ) {
275
-			$this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()} = $value;
274
+		if ($method = $this->has_map_method($name)) {
275
+			$this->attributes[self::OBJECT_KEY]->{$this->{$method}()} = $value;
276 276
 		} else {
277
-			$this->attributes[ self::TABLE_KEY ][ $name ] = $value;
277
+			$this->attributes[self::TABLE_KEY][$name] = $value;
278 278
 		}
279 279
 
280 280
 		return $this;
@@ -286,11 +286,11 @@  discard block
 block discarded – undo
286 286
 	 * @return array
287 287
 	 */
288 288
 	public function get_attribute_keys() {
289
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
290
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
289
+		if (isset(self::$memo[get_called_class()][__METHOD__])) {
290
+			return self::$memo[get_called_class()][__METHOD__];
291 291
 		}
292 292
 
293
-		return self::$memo[ get_called_class() ][ __METHOD__ ]
293
+		return self::$memo[get_called_class()][__METHOD__]
294 294
 			= array_merge(
295 295
 				$this->fillable,
296 296
 				$this->guarded,
@@ -304,21 +304,21 @@  discard block
 block discarded – undo
304 304
 	 * @return array
305 305
 	 */
306 306
 	public function get_table_keys() {
307
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
308
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
307
+		if (isset(self::$memo[get_called_class()][__METHOD__])) {
308
+			return self::$memo[get_called_class()][__METHOD__];
309 309
 		}
310 310
 
311 311
 		$keys = array();
312 312
 
313
-		foreach ( $this->get_attribute_keys() as $key ) {
314
-			if ( ! $this->has_map_method( $key ) &&
315
-			     ! $this->has_compute_method( $key )
313
+		foreach ($this->get_attribute_keys() as $key) {
314
+			if (!$this->has_map_method($key) &&
315
+			     !$this->has_compute_method($key)
316 316
 			) {
317 317
 				$keys[] = $key;
318 318
 			}
319 319
 		}
320 320
 
321
-		return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
321
+		return self::$memo[get_called_class()][__METHOD__] = $keys;
322 322
 	}
323 323
 
324 324
 	/**
@@ -327,19 +327,19 @@  discard block
 block discarded – undo
327 327
 	 * @return array
328 328
 	 */
329 329
 	public function get_wp_object_keys() {
330
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
331
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
330
+		if (isset(self::$memo[get_called_class()][__METHOD__])) {
331
+			return self::$memo[get_called_class()][__METHOD__];
332 332
 		}
333 333
 
334 334
 		$keys = array();
335 335
 
336
-		foreach ( $this->get_attribute_keys() as $key ) {
337
-			if ( $this->has_map_method( $key ) ) {
336
+		foreach ($this->get_attribute_keys() as $key) {
337
+			if ($this->has_map_method($key)) {
338 338
 				$keys[] = $key;
339 339
 			}
340 340
 		}
341 341
 
342
-		return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
342
+		return self::$memo[get_called_class()][__METHOD__] = $keys;
343 343
 	}
344 344
 
345 345
 	/**
@@ -348,19 +348,19 @@  discard block
 block discarded – undo
348 348
 	 * @return array
349 349
 	 */
350 350
 	public function get_computed_keys() {
351
-		if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) {
352
-			return self::$memo[ get_called_class() ][ __METHOD__ ];
351
+		if (isset(self::$memo[get_called_class()][__METHOD__])) {
352
+			return self::$memo[get_called_class()][__METHOD__];
353 353
 		}
354 354
 
355 355
 		$keys = array();
356 356
 
357
-		foreach ( $this->get_attribute_keys() as $key ) {
358
-			if ( $this->has_compute_method( $key ) ) {
357
+		foreach ($this->get_attribute_keys() as $key) {
358
+			if ($this->has_compute_method($key)) {
359 359
 				$keys[] = $key;
360 360
 			}
361 361
 		}
362 362
 
363
-		return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys;
363
+		return self::$memo[get_called_class()][__METHOD__] = $keys;
364 364
 	}
365 365
 
366 366
 	/**
@@ -371,32 +371,32 @@  discard block
 block discarded – undo
371 371
 	public function serialize() {
372 372
 		$attributes = array();
373 373
 
374
-		if ( $this->visible ) {
374
+		if ($this->visible) {
375 375
 			// If visible attributes are set, we'll only reveal those.
376
-			foreach ( $this->visible as $key ) {
377
-				$attributes[ $key ] = $this->get_attribute( $key );
376
+			foreach ($this->visible as $key) {
377
+				$attributes[$key] = $this->get_attribute($key);
378 378
 			}
379
-		} elseif ( $this->hidden ) {
379
+		} elseif ($this->hidden) {
380 380
 			// If hidden attributes are set, we'll grab everything and hide those.
381
-			foreach ( $this->get_attribute_keys() as $key ) {
382
-				if ( ! in_array( $key, $this->hidden ) ) {
383
-					$attributes[ $key ] = $this->get_attribute( $key );
381
+			foreach ($this->get_attribute_keys() as $key) {
382
+				if (!in_array($key, $this->hidden)) {
383
+					$attributes[$key] = $this->get_attribute($key);
384 384
 				}
385 385
 			}
386 386
 		} else {
387 387
 			// If nothing is hidden/visible, we'll grab and reveal everything.
388
-			foreach ( $this->get_attribute_keys() as $key ) {
389
-				$attributes[ $key ] = $this->get_attribute( $key );
388
+			foreach ($this->get_attribute_keys() as $key) {
389
+				$attributes[$key] = $this->get_attribute($key);
390 390
 			}
391 391
 		}
392 392
 
393
-		return array_map( function ( $attribute ) {
394
-			if ( $attribute instanceof Serializes ) {
393
+		return array_map(function($attribute) {
394
+			if ($attribute instanceof Serializes) {
395 395
 				return $attribute->serialize();
396 396
 			}
397 397
 
398 398
 			return $attribute;
399
-		}, $attributes );
399
+		}, $attributes);
400 400
 	}
401 401
 
402 402
 	/**
@@ -407,8 +407,8 @@  discard block
 block discarded – undo
407 407
 	public function sync_original() {
408 408
 		$this->original = $this->attributes;
409 409
 
410
-		if ( $this->attributes[ self::OBJECT_KEY ] ) {
411
-			$this->original[ self::OBJECT_KEY ] = clone $this->attributes[ self::OBJECT_KEY ];
410
+		if ($this->attributes[self::OBJECT_KEY]) {
411
+			$this->original[self::OBJECT_KEY] = clone $this->attributes[self::OBJECT_KEY];
412 412
 		}
413 413
 
414 414
 		return $this;
@@ -423,24 +423,24 @@  discard block
 block discarded – undo
423 423
 	 *
424 424
 	 * @return bool
425 425
 	 */
426
-	private function is_fillable( $name ) {
426
+	private function is_fillable($name) {
427 427
 		// If this model isn't guarded, everything is fillable.
428
-		if ( ! $this->is_guarded ) {
428
+		if (!$this->is_guarded) {
429 429
 			return true;
430 430
 		}
431 431
 
432 432
 		// If it's in the fillable array, then it's fillable.
433
-		if ( in_array( $name, $this->fillable ) ) {
433
+		if (in_array($name, $this->fillable)) {
434 434
 			return true;
435 435
 		}
436 436
 
437 437
 		// If it's explicitly guarded, then it's not fillable.
438
-		if ( in_array( $name, $this->guarded ) ) {
438
+		if (in_array($name, $this->guarded)) {
439 439
 			return false;
440 440
 		}
441 441
 
442 442
 		// If fillable hasn't been defined, then everything else fillable.
443
-		return ! $this->fillable;
443
+		return !$this->fillable;
444 444
 	}
445 445
 
446 446
 	/**
@@ -452,8 +452,8 @@  discard block
 block discarded – undo
452 452
 	 *
453 453
 	 * @return $this
454 454
 	 */
455
-	private function override_wp_object( $value ) {
456
-		$this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $value );
455
+	private function override_wp_object($value) {
456
+		$this->attributes[self::OBJECT_KEY] = $this->set_wp_object_constants($value);
457 457
 
458 458
 		return $this;
459 459
 	}
@@ -467,19 +467,19 @@  discard block
 block discarded – undo
467 467
 	 * @throws LogicException
468 468
 	 */
469 469
 	private function create_wp_object() {
470
-		switch ( true ) {
470
+		switch (true) {
471 471
 			case $this instanceof UsesWordPressPost:
472
-				$object = new WP_Post( (object) array() );
472
+				$object = new WP_Post((object) array());
473 473
 				break;
474 474
 			case $this instanceof UsesWordPressTerm:
475
-				$object = new WP_Term( (object) array() );
475
+				$object = new WP_Term((object) array());
476 476
 				break;
477 477
 			default:
478 478
 				throw new LogicException;
479 479
 				break;
480 480
 		}
481 481
 
482
-		$this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $object );
482
+		$this->attributes[self::OBJECT_KEY] = $this->set_wp_object_constants($object);
483 483
 	}
484 484
 
485 485
 	/**
@@ -493,12 +493,12 @@  discard block
 block discarded – undo
493 493
 	 *
494 494
 	 * @return object
495 495
 	 */
496
-	protected function set_wp_object_constants( $object ) {
497
-		if ( $this instanceof UsesWordPressPost ) {
496
+	protected function set_wp_object_constants($object) {
497
+		if ($this instanceof UsesWordPressPost) {
498 498
 			$object->post_type = $this::get_post_type();
499 499
 		}
500 500
 
501
-		if ( $this instanceof UsesWordPressTerm ) {
501
+		if ($this instanceof UsesWordPressTerm) {
502 502
 			$object->taxonomy = $this::get_taxonomy();
503 503
 		}
504 504
 
@@ -514,8 +514,8 @@  discard block
 block discarded – undo
514 514
 	 *
515 515
 	 * @return mixed
516 516
 	 */
517
-	public function __get( $name ) {
518
-		return $this->get_attribute( $name );
517
+	public function __get($name) {
518
+		return $this->get_attribute($name);
519 519
 	}
520 520
 
521 521
 	/**
@@ -527,17 +527,17 @@  discard block
 block discarded – undo
527 527
 	 *
528 528
 	 * @throws PropertyDoesNotExistException If property isn't found.
529 529
 	 */
530
-	public function get_attribute( $name ) {
531
-		if ( $method = $this->has_map_method( $name ) ) {
532
-			$value = $this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()};
533
-		} elseif ( $method = $this->has_compute_method( $name ) ) {
530
+	public function get_attribute($name) {
531
+		if ($method = $this->has_map_method($name)) {
532
+			$value = $this->attributes[self::OBJECT_KEY]->{$this->{$method}()};
533
+		} elseif ($method = $this->has_compute_method($name)) {
534 534
 			$value = $this->{$method}();
535 535
 		} else {
536
-			if ( ! isset( $this->attributes[ self::TABLE_KEY ][ $name ] ) ) {
536
+			if (!isset($this->attributes[self::TABLE_KEY][$name])) {
537 537
 				throw new PropertyDoesNotExistException;
538 538
 			}
539 539
 
540
-			$value = $this->attributes[ self::TABLE_KEY ][ $name ];
540
+			$value = $this->attributes[self::TABLE_KEY][$name];
541 541
 		}
542 542
 
543 543
 		return $value;
@@ -552,10 +552,10 @@  discard block
 block discarded – undo
552 552
 	 *
553 553
 	 * @throws PropertyDoesNotExistException If property isn't found.
554 554
 	 */
555
-	public function get_original_attribute( $name ) {
556
-		$original = new static( $this->original );
555
+	public function get_original_attribute($name) {
556
+		$original = new static($this->original);
557 557
 
558
-		return $original->get_attribute( $name );
558
+		return $original->get_attribute($name);
559 559
 	}
560 560
 
561 561
 	/**
@@ -567,11 +567,11 @@  discard block
 block discarded – undo
567 567
 	 * @throws LogicException
568 568
 	 */
569 569
 	public function get_primary_id() {
570
-		if ( $this instanceof UsesWordPressPost ) {
570
+		if ($this instanceof UsesWordPressPost) {
571 571
 			return $this->get_underlying_wp_object()->ID;
572 572
 		}
573 573
 
574
-		if ( $this instanceof UsesWordPressTerm ) {
574
+		if ($this instanceof UsesWordPressTerm) {
575 575
 			return $this->get_underlying_wp_object()->term_id;
576 576
 		}
577 577
 
@@ -590,8 +590,8 @@  discard block
 block discarded – undo
590 590
 	 *
591 591
 	 * @return false|string
592 592
 	 */
593
-	protected function has_map_method( $name ) {
594
-		if ( method_exists( $this, $method = "map_{$name}" ) ) {
593
+	protected function has_map_method($name) {
594
+		if (method_exists($this, $method = "map_{$name}")) {
595 595
 			return $method;
596 596
 		}
597 597
 
@@ -608,8 +608,8 @@  discard block
 block discarded – undo
608 608
 	 *
609 609
 	 * @return false|string
610 610
 	 */
611
-	protected function has_compute_method( $name ) {
612
-		if ( method_exists( $this, $method = "compute_{$name}" ) ) {
611
+	protected function has_compute_method($name) {
612
+		if (method_exists($this, $method = "compute_{$name}")) {
613 613
 			return $method;
614 614
 		}
615 615
 
@@ -627,10 +627,10 @@  discard block
 block discarded – undo
627 627
 	public function clear() {
628 628
 		$keys = $this->get_attribute_keys();
629 629
 
630
-		foreach ( $keys as $key ) {
630
+		foreach ($keys as $key) {
631 631
 			try {
632
-				$this->set_attribute( $key, null );
633
-			} catch ( GuardedPropertyException $e ) {
632
+				$this->set_attribute($key, null);
633
+			} catch (GuardedPropertyException $e) {
634 634
 				// We won't clear out guarded attributes.
635 635
 			}
636 636
 		}
@@ -664,13 +664,13 @@  discard block
 block discarded – undo
664 664
 	 * @return array
665 665
 	 */
666 666
 	protected function get_compute_methods() {
667
-		$methods = get_class_methods( get_called_class() );
668
-		$methods = array_filter( $methods, function ( $method ) {
669
-			return strrpos( $method, 'compute_', - strlen( $method ) ) !== false;
667
+		$methods = get_class_methods(get_called_class());
668
+		$methods = array_filter($methods, function($method) {
669
+			return strrpos($method, 'compute_', - strlen($method)) !== false;
670 670
 		} );
671
-		$methods = array_map( function ( $method ) {
672
-			return substr( $method, strlen( 'compute_' ) );
673
-		}, $methods );
671
+		$methods = array_map(function($method) {
672
+			return substr($method, strlen('compute_'));
673
+		}, $methods);
674 674
 
675 675
 		return $methods;
676 676
 	}
@@ -679,8 +679,8 @@  discard block
 block discarded – undo
679 679
 	 * Sets up the memo array for the creating model.
680 680
 	 */
681 681
 	private function maybe_boot() {
682
-		if ( ! isset( self::$memo[ get_called_class() ] ) ) {
683
-			self::$memo[ get_called_class() ] = array();
682
+		if (!isset(self::$memo[get_called_class()])) {
683
+			self::$memo[get_called_class()] = array();
684 684
 		}
685 685
 	}
686 686
 
Please login to merge, or discard this patch.
src/Axolotl/Collection.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -41,11 +41,11 @@  discard block
 block discarded – undo
41 41
 	 * @param array $elements
42 42
 	 * @param array $config
43 43
 	 */
44
-	public function __construct( array $elements = array(), array $config = array() ) {
45
-		$this->parse_config( $config );
44
+	public function __construct(array $elements = array(), array $config = array()) {
45
+		$this->parse_config($config);
46 46
 
47
-		foreach ( $elements as $element ) {
48
-			$this->add( $element );
47
+		foreach ($elements as $element) {
48
+			$this->add($element);
49 49
 		}
50 50
 	}
51 51
 
@@ -56,12 +56,12 @@  discard block
 block discarded – undo
56 56
 	 *
57 57
 	 * @throws RuntimeException
58 58
 	 */
59
-	public function add( $element ) {
60
-		if ( $this->model && is_array( $element ) ) {
61
-			$element = new $this->model( $element );
59
+	public function add($element) {
60
+		if ($this->model && is_array($element)) {
61
+			$element = new $this->model($element);
62 62
 		}
63 63
 
64
-		if ( $this->model && ! ( $element instanceof $this->model ) ) {
64
+		if ($this->model && !($element instanceof $this->model)) {
65 65
 			throw new RuntimeException;
66 66
 		}
67 67
 
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 	 *
76 76
 	 * @return mixed
77 77
 	 */
78
-	public function at( $index ) {
79
-		return isset( $this->elements[ $index ] ) ? $this->elements[ $index ] : null;
78
+	public function at($index) {
79
+		return isset($this->elements[$index]) ? $this->elements[$index] : null;
80 80
 	}
81 81
 
82 82
 	/**
@@ -85,14 +85,14 @@  discard block
 block discarded – undo
85 85
 	 * @return mixed
86 86
 	 */
87 87
 	public function current() {
88
-		return $this->at( $this->position );
88
+		return $this->at($this->position);
89 89
 	}
90 90
 
91 91
 	/**
92 92
 	 * Move forward to next element.
93 93
 	 */
94 94
 	public function next() {
95
-		$this->position ++;
95
+		$this->position++;
96 96
 	}
97 97
 
98 98
 	/**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	 * @return bool
111 111
 	 */
112 112
 	public function valid() {
113
-		return isset( $this->elements[ $this->position ] );
113
+		return isset($this->elements[$this->position]);
114 114
 	}
115 115
 
116 116
 	/**
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	 * @return int
127 127
 	 */
128 128
 	public function count() {
129
-		return count( $this->elements );
129
+		return count($this->elements);
130 130
 	}
131 131
 
132 132
 	/**
@@ -136,11 +136,11 @@  discard block
 block discarded – undo
136 136
 	 *
137 137
 	 * @throws LogicException
138 138
 	 */
139
-	protected function parse_config( array $config ) {
140
-		if ( isset( $config['model'] ) ) {
139
+	protected function parse_config(array $config) {
140
+		if (isset($config['model'])) {
141 141
 			$model = $config['model'];
142 142
 
143
-			if ( ! is_subclass_of( $model, 'Intraxia\Jaxion\Axolotl\Model' ) ) {
143
+			if (!is_subclass_of($model, 'Intraxia\Jaxion\Axolotl\Model')) {
144 144
 				throw new LogicException;
145 145
 			}
146 146
 
@@ -154,8 +154,8 @@  discard block
 block discarded – undo
154 154
 	 * @return array
155 155
 	 */
156 156
 	public function serialize() {
157
-		return array_map(function( $element ) {
158
-			if ( $element instanceof Serializes ) {
157
+		return array_map(function($element) {
158
+			if ($element instanceof Serializes) {
159 159
 				return $element->serialize();
160 160
 			}
161 161
 
Please login to merge, or discard this patch.