@@ -71,17 +71,17 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -19,9 +19,9 @@ discard block |
||
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 |
||
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 | } |
@@ -59,9 +59,9 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -73,7 +73,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | /** |
@@ -65,8 +65,8 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param $basename |
32 | 32 | * @param $path |
33 | 33 | */ |
34 | - public function __construct( $basename, $path ) { |
|
34 | + public function __construct($basename, $path) { |
|
35 | 35 | $this->basename = $basename; |
36 | 36 | $this->path = $path; |
37 | 37 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | load_plugin_textdomain( |
44 | 44 | $this->basename, |
45 | 45 | false, |
46 | - basename( $this->path ) . '/languages/' |
|
46 | + basename($this->path).'/languages/' |
|
47 | 47 | ); |
48 | 48 | } |
49 | 49 |
@@ -114,16 +114,16 @@ discard block |
||
114 | 114 | * |
115 | 115 | * @param array <string, mixed> $attributes |
116 | 116 | */ |
117 | - public function __construct( array $attributes = array() ) { |
|
117 | + public function __construct(array $attributes = array()) { |
|
118 | 118 | $this->maybe_boot(); |
119 | 119 | $this->sync_original(); |
120 | 120 | |
121 | - if ( $this->uses_wp_object() ) { |
|
121 | + if ($this->uses_wp_object()) { |
|
122 | 122 | $this->create_wp_object(); |
123 | 123 | } |
124 | 124 | |
125 | 125 | $this->unguard(); |
126 | - $this->refresh( $attributes ); |
|
126 | + $this->refresh($attributes); |
|
127 | 127 | $this->reguard(); |
128 | 128 | } |
129 | 129 | |
@@ -137,10 +137,10 @@ discard block |
||
137 | 137 | * |
138 | 138 | * @return $this |
139 | 139 | */ |
140 | - public function refresh( array $attributes ) { |
|
140 | + public function refresh(array $attributes) { |
|
141 | 141 | $this->clear(); |
142 | 142 | |
143 | - return $this->merge( $attributes ); |
|
143 | + return $this->merge($attributes); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -150,9 +150,9 @@ discard block |
||
150 | 150 | * |
151 | 151 | * @return $this |
152 | 152 | */ |
153 | - public function merge( array $attributes ) { |
|
154 | - foreach ( $attributes as $name => $value ) { |
|
155 | - $this->set_attribute( $name, $value ); |
|
153 | + public function merge(array $attributes) { |
|
154 | + foreach ($attributes as $name => $value) { |
|
155 | + $this->set_attribute($name, $value); |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | return $this; |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | * @return array |
168 | 168 | */ |
169 | 169 | public function get_table_attributes() { |
170 | - return $this->attributes[ self::TABLE_KEY ]; |
|
170 | + return $this->attributes[self::TABLE_KEY]; |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | /** |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | * @return array |
177 | 177 | */ |
178 | 178 | public function get_original_table_attributes() { |
179 | - return $this->original[ self::TABLE_KEY ]; |
|
179 | + return $this->original[self::TABLE_KEY]; |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | /** |
@@ -189,11 +189,11 @@ discard block |
||
189 | 189 | public function get_changed_table_attributes() { |
190 | 190 | $changed = array(); |
191 | 191 | |
192 | - foreach ( $this->get_table_attributes() as $key => $value ) { |
|
193 | - if ( $value !== |
|
194 | - $this->get_original_attribute( $key ) |
|
192 | + foreach ($this->get_table_attributes() as $key => $value) { |
|
193 | + if ($value !== |
|
194 | + $this->get_original_attribute($key) |
|
195 | 195 | ) { |
196 | - $changed[ $key ] = $value; |
|
196 | + $changed[$key] = $value; |
|
197 | 197 | } |
198 | 198 | } |
199 | 199 | |
@@ -209,8 +209,8 @@ discard block |
||
209 | 209 | * @return false|WP_Post|WP_Term |
210 | 210 | */ |
211 | 211 | public function get_underlying_wp_object() { |
212 | - if ( isset( $this->attributes[ self::OBJECT_KEY ] ) ) { |
|
213 | - return $this->attributes[ self::OBJECT_KEY ]; |
|
212 | + if (isset($this->attributes[self::OBJECT_KEY])) { |
|
213 | + return $this->attributes[self::OBJECT_KEY]; |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | return false; |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | * @return WP_Post |
223 | 223 | */ |
224 | 224 | public function get_original_underlying_wp_object() { |
225 | - return $this->original[ self::OBJECT_KEY ]; |
|
225 | + return $this->original[self::OBJECT_KEY]; |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | /** |
@@ -235,11 +235,11 @@ discard block |
||
235 | 235 | public function get_changed_wp_object_attributes() { |
236 | 236 | $changed = array(); |
237 | 237 | |
238 | - foreach ( $this->get_wp_object_keys() as $key ) { |
|
239 | - if ( $this->get_attribute( $key ) !== |
|
240 | - $this->get_original_attribute( $key ) |
|
238 | + foreach ($this->get_wp_object_keys() as $key) { |
|
239 | + if ($this->get_attribute($key) !== |
|
240 | + $this->get_original_attribute($key) |
|
241 | 241 | ) { |
242 | - $changed[ $key ] = $this->get_attribute( $key ); |
|
242 | + $changed[$key] = $this->get_attribute($key); |
|
243 | 243 | } |
244 | 244 | } |
245 | 245 | |
@@ -254,8 +254,8 @@ discard block |
||
254 | 254 | * @param string $name |
255 | 255 | * @param mixed $value |
256 | 256 | */ |
257 | - public function __set( $name, $value ) { |
|
258 | - $this->set_attribute( $name, $value ); |
|
257 | + public function __set($name, $value) { |
|
258 | + $this->set_attribute($name, $value); |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | /** |
@@ -273,23 +273,23 @@ discard block |
||
273 | 273 | * @throws Exception |
274 | 274 | * @throws GuardedPropertyException |
275 | 275 | */ |
276 | - public function set_attribute( $name, $value ) { |
|
277 | - if ( self::OBJECT_KEY === $name ) { |
|
278 | - return $this->override_wp_object( $value ); |
|
276 | + public function set_attribute($name, $value) { |
|
277 | + if (self::OBJECT_KEY === $name) { |
|
278 | + return $this->override_wp_object($value); |
|
279 | 279 | } |
280 | 280 | |
281 | - if ( self::TABLE_KEY === $name ) { |
|
282 | - return $this->override_table( $value ); |
|
281 | + if (self::TABLE_KEY === $name) { |
|
282 | + return $this->override_table($value); |
|
283 | 283 | } |
284 | 284 | |
285 | - if ( ! $this->is_fillable( $name ) ) { |
|
285 | + if (!$this->is_fillable($name)) { |
|
286 | 286 | throw new GuardedPropertyException; |
287 | 287 | } |
288 | 288 | |
289 | - if ( $method = $this->has_map_method( $name ) ) { |
|
290 | - $this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()} = $value; |
|
289 | + if ($method = $this->has_map_method($name)) { |
|
290 | + $this->attributes[self::OBJECT_KEY]->{$this->{$method}()} = $value; |
|
291 | 291 | } else { |
292 | - $this->attributes[ self::TABLE_KEY ][ $name ] = $value; |
|
292 | + $this->attributes[self::TABLE_KEY][$name] = $value; |
|
293 | 293 | } |
294 | 294 | |
295 | 295 | return $this; |
@@ -301,11 +301,11 @@ discard block |
||
301 | 301 | * @return array |
302 | 302 | */ |
303 | 303 | public function get_attribute_keys() { |
304 | - if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) { |
|
305 | - return self::$memo[ get_called_class() ][ __METHOD__ ]; |
|
304 | + if (isset(self::$memo[get_called_class()][__METHOD__])) { |
|
305 | + return self::$memo[get_called_class()][__METHOD__]; |
|
306 | 306 | } |
307 | 307 | |
308 | - return self::$memo[ get_called_class() ][ __METHOD__ ] |
|
308 | + return self::$memo[get_called_class()][__METHOD__] |
|
309 | 309 | = array_merge( |
310 | 310 | $this->fillable, |
311 | 311 | $this->guarded, |
@@ -319,21 +319,21 @@ discard block |
||
319 | 319 | * @return array |
320 | 320 | */ |
321 | 321 | public function get_table_keys() { |
322 | - if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) { |
|
323 | - return self::$memo[ get_called_class() ][ __METHOD__ ]; |
|
322 | + if (isset(self::$memo[get_called_class()][__METHOD__])) { |
|
323 | + return self::$memo[get_called_class()][__METHOD__]; |
|
324 | 324 | } |
325 | 325 | |
326 | 326 | $keys = array(); |
327 | 327 | |
328 | - foreach ( $this->get_attribute_keys() as $key ) { |
|
329 | - if ( ! $this->has_map_method( $key ) && |
|
330 | - ! $this->has_compute_method( $key ) |
|
328 | + foreach ($this->get_attribute_keys() as $key) { |
|
329 | + if (!$this->has_map_method($key) && |
|
330 | + !$this->has_compute_method($key) |
|
331 | 331 | ) { |
332 | 332 | $keys[] = $key; |
333 | 333 | } |
334 | 334 | } |
335 | 335 | |
336 | - return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys; |
|
336 | + return self::$memo[get_called_class()][__METHOD__] = $keys; |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | /** |
@@ -342,19 +342,19 @@ discard block |
||
342 | 342 | * @return array |
343 | 343 | */ |
344 | 344 | public function get_wp_object_keys() { |
345 | - if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) { |
|
346 | - return self::$memo[ get_called_class() ][ __METHOD__ ]; |
|
345 | + if (isset(self::$memo[get_called_class()][__METHOD__])) { |
|
346 | + return self::$memo[get_called_class()][__METHOD__]; |
|
347 | 347 | } |
348 | 348 | |
349 | 349 | $keys = array(); |
350 | 350 | |
351 | - foreach ( $this->get_attribute_keys() as $key ) { |
|
352 | - if ( $this->has_map_method( $key ) ) { |
|
351 | + foreach ($this->get_attribute_keys() as $key) { |
|
352 | + if ($this->has_map_method($key)) { |
|
353 | 353 | $keys[] = $key; |
354 | 354 | } |
355 | 355 | } |
356 | 356 | |
357 | - return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys; |
|
357 | + return self::$memo[get_called_class()][__METHOD__] = $keys; |
|
358 | 358 | } |
359 | 359 | |
360 | 360 | /** |
@@ -363,19 +363,19 @@ discard block |
||
363 | 363 | * @return array |
364 | 364 | */ |
365 | 365 | public function get_computed_keys() { |
366 | - if ( isset( self::$memo[ get_called_class() ][ __METHOD__ ] ) ) { |
|
367 | - return self::$memo[ get_called_class() ][ __METHOD__ ]; |
|
366 | + if (isset(self::$memo[get_called_class()][__METHOD__])) { |
|
367 | + return self::$memo[get_called_class()][__METHOD__]; |
|
368 | 368 | } |
369 | 369 | |
370 | 370 | $keys = array(); |
371 | 371 | |
372 | - foreach ( $this->get_attribute_keys() as $key ) { |
|
373 | - if ( $this->has_compute_method( $key ) ) { |
|
372 | + foreach ($this->get_attribute_keys() as $key) { |
|
373 | + if ($this->has_compute_method($key)) { |
|
374 | 374 | $keys[] = $key; |
375 | 375 | } |
376 | 376 | } |
377 | 377 | |
378 | - return self::$memo[ get_called_class() ][ __METHOD__ ] = $keys; |
|
378 | + return self::$memo[get_called_class()][__METHOD__] = $keys; |
|
379 | 379 | } |
380 | 380 | |
381 | 381 | /** |
@@ -386,32 +386,32 @@ discard block |
||
386 | 386 | public function serialize() { |
387 | 387 | $attributes = array(); |
388 | 388 | |
389 | - if ( $this->visible ) { |
|
389 | + if ($this->visible) { |
|
390 | 390 | // If visible attributes are set, we'll only reveal those. |
391 | - foreach ( $this->visible as $key ) { |
|
392 | - $attributes[ $key ] = $this->get_attribute( $key ); |
|
391 | + foreach ($this->visible as $key) { |
|
392 | + $attributes[$key] = $this->get_attribute($key); |
|
393 | 393 | } |
394 | - } elseif ( $this->hidden ) { |
|
394 | + } elseif ($this->hidden) { |
|
395 | 395 | // If hidden attributes are set, we'll grab everything and hide those. |
396 | - foreach ( $this->get_attribute_keys() as $key ) { |
|
397 | - if ( ! in_array( $key, $this->hidden ) ) { |
|
398 | - $attributes[ $key ] = $this->get_attribute( $key ); |
|
396 | + foreach ($this->get_attribute_keys() as $key) { |
|
397 | + if (!in_array($key, $this->hidden)) { |
|
398 | + $attributes[$key] = $this->get_attribute($key); |
|
399 | 399 | } |
400 | 400 | } |
401 | 401 | } else { |
402 | 402 | // If nothing is hidden/visible, we'll grab and reveal everything. |
403 | - foreach ( $this->get_attribute_keys() as $key ) { |
|
404 | - $attributes[ $key ] = $this->get_attribute( $key ); |
|
403 | + foreach ($this->get_attribute_keys() as $key) { |
|
404 | + $attributes[$key] = $this->get_attribute($key); |
|
405 | 405 | } |
406 | 406 | } |
407 | 407 | |
408 | - return array_map( function ( $attribute ) { |
|
409 | - if ( $attribute instanceof Serializes ) { |
|
408 | + return array_map(function($attribute) { |
|
409 | + if ($attribute instanceof Serializes) { |
|
410 | 410 | return $attribute->serialize(); |
411 | 411 | } |
412 | 412 | |
413 | 413 | return $attribute; |
414 | - }, $attributes ); |
|
414 | + }, $attributes); |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | /** |
@@ -422,13 +422,13 @@ discard block |
||
422 | 422 | public function sync_original() { |
423 | 423 | $this->original = $this->attributes; |
424 | 424 | |
425 | - if ( $this->attributes[ self::OBJECT_KEY ] ) { |
|
426 | - $this->original[ self::OBJECT_KEY ] = clone $this->attributes[ self::OBJECT_KEY ]; |
|
425 | + if ($this->attributes[self::OBJECT_KEY]) { |
|
426 | + $this->original[self::OBJECT_KEY] = clone $this->attributes[self::OBJECT_KEY]; |
|
427 | 427 | } |
428 | 428 | |
429 | - foreach ( $this->original[ self::TABLE_KEY ] as $key => $item ) { |
|
430 | - if ( is_object( $item ) ) { |
|
431 | - $this->original[ $key ] = clone $item; |
|
429 | + foreach ($this->original[self::TABLE_KEY] as $key => $item) { |
|
430 | + if (is_object($item)) { |
|
431 | + $this->original[$key] = clone $item; |
|
432 | 432 | } |
433 | 433 | } |
434 | 434 | |
@@ -444,24 +444,24 @@ discard block |
||
444 | 444 | * |
445 | 445 | * @return bool |
446 | 446 | */ |
447 | - private function is_fillable( $name ) { |
|
447 | + private function is_fillable($name) { |
|
448 | 448 | // If this model isn't guarded, everything is fillable. |
449 | - if ( ! $this->is_guarded ) { |
|
449 | + if (!$this->is_guarded) { |
|
450 | 450 | return true; |
451 | 451 | } |
452 | 452 | |
453 | 453 | // If it's in the fillable array, then it's fillable. |
454 | - if ( in_array( $name, $this->fillable ) ) { |
|
454 | + if (in_array($name, $this->fillable)) { |
|
455 | 455 | return true; |
456 | 456 | } |
457 | 457 | |
458 | 458 | // If it's explicitly guarded, then it's not fillable. |
459 | - if ( in_array( $name, $this->guarded ) ) { |
|
459 | + if (in_array($name, $this->guarded)) { |
|
460 | 460 | return false; |
461 | 461 | } |
462 | 462 | |
463 | 463 | // If fillable hasn't been defined, then everything else fillable. |
464 | - return ! $this->fillable; |
|
464 | + return !$this->fillable; |
|
465 | 465 | } |
466 | 466 | |
467 | 467 | /** |
@@ -473,13 +473,13 @@ discard block |
||
473 | 473 | * |
474 | 474 | * @return $this |
475 | 475 | */ |
476 | - private function override_wp_object( $value ) { |
|
477 | - if ( is_object( $value ) ) { |
|
478 | - $this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $value ); |
|
476 | + private function override_wp_object($value) { |
|
477 | + if (is_object($value)) { |
|
478 | + $this->attributes[self::OBJECT_KEY] = $this->set_wp_object_constants($value); |
|
479 | 479 | } else { |
480 | - $this->attributes[ self::OBJECT_KEY ] = null; |
|
480 | + $this->attributes[self::OBJECT_KEY] = null; |
|
481 | 481 | |
482 | - if ( $this->uses_wp_object() ) { |
|
482 | + if ($this->uses_wp_object()) { |
|
483 | 483 | $this->create_wp_object(); |
484 | 484 | } |
485 | 485 | } |
@@ -494,8 +494,8 @@ discard block |
||
494 | 494 | * |
495 | 495 | * @return $this |
496 | 496 | */ |
497 | - private function override_table( array $value ) { |
|
498 | - $this->attributes[ self::TABLE_KEY ] = $value; |
|
497 | + private function override_table(array $value) { |
|
498 | + $this->attributes[self::TABLE_KEY] = $value; |
|
499 | 499 | |
500 | 500 | return $this; |
501 | 501 | } |
@@ -509,19 +509,19 @@ discard block |
||
509 | 509 | * @throws LogicException |
510 | 510 | */ |
511 | 511 | private function create_wp_object() { |
512 | - switch ( true ) { |
|
512 | + switch (true) { |
|
513 | 513 | case $this instanceof UsesWordPressPost: |
514 | - $object = new WP_Post( (object) array() ); |
|
514 | + $object = new WP_Post((object) array()); |
|
515 | 515 | break; |
516 | 516 | case $this instanceof UsesWordPressTerm: |
517 | - $object = new WP_Term( (object) array() ); |
|
517 | + $object = new WP_Term((object) array()); |
|
518 | 518 | break; |
519 | 519 | default: |
520 | 520 | throw new LogicException; |
521 | 521 | break; |
522 | 522 | } |
523 | 523 | |
524 | - $this->attributes[ self::OBJECT_KEY ] = $this->set_wp_object_constants( $object ); |
|
524 | + $this->attributes[self::OBJECT_KEY] = $this->set_wp_object_constants($object); |
|
525 | 525 | } |
526 | 526 | |
527 | 527 | /** |
@@ -535,12 +535,12 @@ discard block |
||
535 | 535 | * |
536 | 536 | * @return object |
537 | 537 | */ |
538 | - protected function set_wp_object_constants( $object ) { |
|
539 | - if ( $this instanceof UsesWordPressPost ) { |
|
538 | + protected function set_wp_object_constants($object) { |
|
539 | + if ($this instanceof UsesWordPressPost) { |
|
540 | 540 | $object->post_type = static::get_post_type(); |
541 | 541 | } |
542 | 542 | |
543 | - if ( $this instanceof UsesWordPressTerm ) { |
|
543 | + if ($this instanceof UsesWordPressTerm) { |
|
544 | 544 | $object->taxonomy = static::get_taxonomy(); |
545 | 545 | } |
546 | 546 | |
@@ -556,8 +556,8 @@ discard block |
||
556 | 556 | * |
557 | 557 | * @return mixed |
558 | 558 | */ |
559 | - public function __get( $name ) { |
|
560 | - return $this->get_attribute( $name ); |
|
559 | + public function __get($name) { |
|
560 | + return $this->get_attribute($name); |
|
561 | 561 | } |
562 | 562 | |
563 | 563 | /** |
@@ -569,24 +569,24 @@ discard block |
||
569 | 569 | * |
570 | 570 | * @throws PropertyDoesNotExistException If property isn't found. |
571 | 571 | */ |
572 | - public function get_attribute( $name ) { |
|
573 | - if ( $method = $this->has_map_method( $name ) ) { |
|
574 | - return $this->attributes[ self::OBJECT_KEY ]->{$this->{$method}()}; |
|
572 | + public function get_attribute($name) { |
|
573 | + if ($method = $this->has_map_method($name)) { |
|
574 | + return $this->attributes[self::OBJECT_KEY]->{$this->{$method}()}; |
|
575 | 575 | } |
576 | 576 | |
577 | - if ( $method = $this->has_compute_method( $name ) ) { |
|
577 | + if ($method = $this->has_compute_method($name)) { |
|
578 | 578 | return $this->{$method}(); |
579 | 579 | } |
580 | 580 | |
581 | - if ( isset( $this->attributes[ self::TABLE_KEY ][ $name ] ) ) { |
|
582 | - return $this->attributes[ self::TABLE_KEY ][ $name ]; |
|
581 | + if (isset($this->attributes[self::TABLE_KEY][$name])) { |
|
582 | + return $this->attributes[self::TABLE_KEY][$name]; |
|
583 | 583 | } |
584 | 584 | |
585 | - if ( isset( $this->defaults[ $name ] ) ) { |
|
586 | - return $this->defaults[ $name ]; |
|
585 | + if (isset($this->defaults[$name])) { |
|
586 | + return $this->defaults[$name]; |
|
587 | 587 | } |
588 | 588 | |
589 | - throw new PropertyDoesNotExistException( $name ); |
|
589 | + throw new PropertyDoesNotExistException($name); |
|
590 | 590 | } |
591 | 591 | |
592 | 592 | /** |
@@ -598,18 +598,18 @@ discard block |
||
598 | 598 | * |
599 | 599 | * @throws PropertyDoesNotExistException If property isn't found. |
600 | 600 | */ |
601 | - public function get_original_attribute( $name ) { |
|
601 | + public function get_original_attribute($name) { |
|
602 | 602 | $original_attributes = $this->original; |
603 | 603 | |
604 | - if ( ! is_object( $original_attributes[ static::OBJECT_KEY ] ) ) { |
|
605 | - unset( $original_attributes[ static::OBJECT_KEY ] ); |
|
604 | + if (!is_object($original_attributes[static::OBJECT_KEY])) { |
|
605 | + unset($original_attributes[static::OBJECT_KEY]); |
|
606 | 606 | } |
607 | 607 | |
608 | - $original = new static( $original_attributes ); |
|
608 | + $original = new static($original_attributes); |
|
609 | 609 | |
610 | 610 | try { |
611 | - return $original->get_attribute( $name ); |
|
612 | - } catch ( Exception $exception ) { |
|
611 | + return $original->get_attribute($name); |
|
612 | + } catch (Exception $exception) { |
|
613 | 613 | return null; |
614 | 614 | } |
615 | 615 | } |
@@ -623,11 +623,11 @@ discard block |
||
623 | 623 | * @throws LogicException |
624 | 624 | */ |
625 | 625 | public function get_primary_id() { |
626 | - if ( $this instanceof UsesWordPressPost ) { |
|
626 | + if ($this instanceof UsesWordPressPost) { |
|
627 | 627 | return $this->get_underlying_wp_object()->ID; |
628 | 628 | } |
629 | 629 | |
630 | - if ( $this instanceof UsesWordPressTerm ) { |
|
630 | + if ($this instanceof UsesWordPressTerm) { |
|
631 | 631 | return $this->get_underlying_wp_object()->term_id; |
632 | 632 | } |
633 | 633 | |
@@ -646,8 +646,8 @@ discard block |
||
646 | 646 | * |
647 | 647 | * @return false|string |
648 | 648 | */ |
649 | - protected function has_map_method( $name ) { |
|
650 | - if ( method_exists( $this, $method = "map_{$name}" ) ) { |
|
649 | + protected function has_map_method($name) { |
|
650 | + if (method_exists($this, $method = "map_{$name}")) { |
|
651 | 651 | return $method; |
652 | 652 | } |
653 | 653 | |
@@ -664,8 +664,8 @@ discard block |
||
664 | 664 | * |
665 | 665 | * @return false|string |
666 | 666 | */ |
667 | - protected function has_compute_method( $name ) { |
|
668 | - if ( method_exists( $this, $method = "compute_{$name}" ) ) { |
|
667 | + protected function has_compute_method($name) { |
|
668 | + if (method_exists($this, $method = "compute_{$name}")) { |
|
669 | 669 | return $method; |
670 | 670 | } |
671 | 671 | |
@@ -686,10 +686,10 @@ discard block |
||
686 | 686 | $this->get_wp_object_keys() |
687 | 687 | ); |
688 | 688 | |
689 | - foreach ( $keys as $key ) { |
|
689 | + foreach ($keys as $key) { |
|
690 | 690 | try { |
691 | - $this->set_attribute( $key, null ); |
|
692 | - } catch ( GuardedPropertyException $e ) { |
|
691 | + $this->set_attribute($key, null); |
|
692 | + } catch (GuardedPropertyException $e) { |
|
693 | 693 | // We won't clear out guarded attributes. |
694 | 694 | } |
695 | 695 | } |
@@ -723,13 +723,13 @@ discard block |
||
723 | 723 | * @return array |
724 | 724 | */ |
725 | 725 | protected function get_compute_methods() { |
726 | - $methods = get_class_methods( get_called_class() ); |
|
727 | - $methods = array_filter( $methods, function ( $method ) { |
|
728 | - return strrpos( $method, 'compute_', - strlen( $method ) ) !== false; |
|
726 | + $methods = get_class_methods(get_called_class()); |
|
727 | + $methods = array_filter($methods, function($method) { |
|
728 | + return strrpos($method, 'compute_', - strlen($method)) !== false; |
|
729 | 729 | } ); |
730 | - $methods = array_map( function ( $method ) { |
|
731 | - return substr( $method, strlen( 'compute_' ) ); |
|
732 | - }, $methods ); |
|
730 | + $methods = array_map(function($method) { |
|
731 | + return substr($method, strlen('compute_')); |
|
732 | + }, $methods); |
|
733 | 733 | |
734 | 734 | return $methods; |
735 | 735 | } |
@@ -738,8 +738,8 @@ discard block |
||
738 | 738 | * Sets up the memo array for the creating model. |
739 | 739 | */ |
740 | 740 | private function maybe_boot() { |
741 | - if ( ! isset( self::$memo[ get_called_class() ] ) ) { |
|
742 | - self::$memo[ get_called_class() ] = array(); |
|
741 | + if (!isset(self::$memo[get_called_class()])) { |
|
742 | + self::$memo[get_called_class()] = array(); |
|
743 | 743 | } |
744 | 744 | } |
745 | 745 |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | * |
15 | 15 | * @return Model|WP_Error |
16 | 16 | */ |
17 | - public function find( $class, $id ); |
|
17 | + public function find($class, $id); |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Finds all the models of the provided class for the given params. |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * |
27 | 27 | * @return Collection|WP_Error |
28 | 28 | */ |
29 | - public function find_by( $class, array $params = array() ); |
|
29 | + public function find_by($class, array $params = array()); |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * Saves a new model of the provided class with the given data. |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * |
37 | 37 | * @return Model|WP_Error |
38 | 38 | */ |
39 | - public function create( $class, array $data = array() ); |
|
39 | + public function create($class, array $data = array()); |
|
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Updates a model with its latest dataE. |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * |
46 | 46 | * @return Model|WP_Error |
47 | 47 | */ |
48 | - public function persist( Model $model ); |
|
48 | + public function persist(Model $model); |
|
49 | 49 | |
50 | 50 | /** |
51 | 51 | * Delete the provide |
@@ -55,5 +55,5 @@ discard block |
||
55 | 55 | * |
56 | 56 | * @return mixed |
57 | 57 | */ |
58 | - public function delete( Model $model, $force = false ); |
|
58 | + public function delete(Model $model, $force = false); |
|
59 | 59 | } |
@@ -48,11 +48,11 @@ discard block |
||
48 | 48 | * @param array $elements |
49 | 49 | * @param array $config |
50 | 50 | */ |
51 | - public function __construct( array $elements = array(), array $config = array() ) { |
|
52 | - $this->parse_config( $this->config = $config ); |
|
51 | + public function __construct(array $elements = array(), array $config = array()) { |
|
52 | + $this->parse_config($this->config = $config); |
|
53 | 53 | |
54 | - foreach ( $elements as $element ) { |
|
55 | - $this->add( $element ); |
|
54 | + foreach ($elements as $element) { |
|
55 | + $this->add($element); |
|
56 | 56 | } |
57 | 57 | } |
58 | 58 | |
@@ -65,12 +65,12 @@ discard block |
||
65 | 65 | * |
66 | 66 | * @return $this |
67 | 67 | */ |
68 | - public function add( $element ) { |
|
69 | - if ( $this->model && is_array( $element ) ) { |
|
70 | - $element = new $this->model( $element ); |
|
68 | + public function add($element) { |
|
69 | + if ($this->model && is_array($element)) { |
|
70 | + $element = new $this->model($element); |
|
71 | 71 | } |
72 | 72 | |
73 | - if ( $this->model && ! ( $element instanceof $this->model ) ) { |
|
73 | + if ($this->model && !($element instanceof $this->model)) { |
|
74 | 74 | throw new RuntimeException; |
75 | 75 | } |
76 | 76 | |
@@ -86,19 +86,19 @@ discard block |
||
86 | 86 | * |
87 | 87 | * @return $this |
88 | 88 | */ |
89 | - public function remove( $index ) { |
|
90 | - if ( ! is_string( $index ) || ! is_numeric( $index ) || ! isset( $this->elements[ $index ] ) ) { |
|
91 | - foreach ( $this->elements as $key => $element ) { |
|
92 | - if ( $element === $index ) { |
|
89 | + public function remove($index) { |
|
90 | + if (!is_string($index) || !is_numeric($index) || !isset($this->elements[$index])) { |
|
91 | + foreach ($this->elements as $key => $element) { |
|
92 | + if ($element === $index) { |
|
93 | 93 | $index = $key; |
94 | 94 | break; |
95 | 95 | } |
96 | 96 | } |
97 | 97 | } |
98 | 98 | |
99 | - if ( isset( $this->elements[ $index ] ) ) { |
|
100 | - unset( $this->elements[ $index ] ); |
|
101 | - $this->elements = array_values( $this->elements ); |
|
99 | + if (isset($this->elements[$index])) { |
|
100 | + unset($this->elements[$index]); |
|
101 | + $this->elements = array_values($this->elements); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | return $this; |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | * |
112 | 112 | * @return mixed|null |
113 | 113 | */ |
114 | - public function at( $index ) { |
|
115 | - return isset( $this->elements[ $index ] ) ? $this->elements[ $index ] : null; |
|
114 | + public function at($index) { |
|
115 | + return isset($this->elements[$index]) ? $this->elements[$index] : null; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -122,8 +122,8 @@ discard block |
||
122 | 122 | * |
123 | 123 | * @return Collection |
124 | 124 | */ |
125 | - protected function map( callable $callback ) { |
|
126 | - return new Collection( array_map( $callback, $this->elements ), $this->config ); |
|
125 | + protected function map(callable $callback) { |
|
126 | + return new Collection(array_map($callback, $this->elements), $this->config); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
@@ -133,8 +133,8 @@ discard block |
||
133 | 133 | * |
134 | 134 | * @return Collection |
135 | 135 | */ |
136 | - public function filter( callable $callback ) { |
|
137 | - return new Collection( array_filter( $this->elements, $callback ) ); |
|
136 | + public function filter(callable $callback) { |
|
137 | + return new Collection(array_filter($this->elements, $callback)); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
@@ -144,9 +144,9 @@ discard block |
||
144 | 144 | * |
145 | 145 | * @return mixed|null |
146 | 146 | */ |
147 | - public function find( callable $callback ) { |
|
148 | - foreach ( $this->elements as $element ) { |
|
149 | - if ( call_user_func( $callback, $element ) ) { |
|
147 | + public function find(callable $callback) { |
|
148 | + foreach ($this->elements as $element) { |
|
149 | + if (call_user_func($callback, $element)) { |
|
150 | 150 | return $element; |
151 | 151 | } |
152 | 152 | } |
@@ -160,8 +160,8 @@ discard block |
||
160 | 160 | * @return array |
161 | 161 | */ |
162 | 162 | public function serialize() { |
163 | - return array_map(function( $element ) { |
|
164 | - if ( $element instanceof Serializes ) { |
|
163 | + return array_map(function($element) { |
|
164 | + if ($element instanceof Serializes) { |
|
165 | 165 | return $element->serialize(); |
166 | 166 | } |
167 | 167 | |
@@ -175,14 +175,14 @@ discard block |
||
175 | 175 | * @return mixed |
176 | 176 | */ |
177 | 177 | public function current() { |
178 | - return $this->at( $this->position ); |
|
178 | + return $this->at($this->position); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
182 | 182 | * Move forward to next element. |
183 | 183 | */ |
184 | 184 | public function next() { |
185 | - $this->position ++; |
|
185 | + $this->position++; |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | /** |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | * @return bool |
201 | 201 | */ |
202 | 202 | public function valid() { |
203 | - return isset( $this->elements[ $this->position ] ); |
|
203 | + return isset($this->elements[$this->position]); |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | * @return int |
217 | 217 | */ |
218 | 218 | public function count() { |
219 | - return count( $this->elements ); |
|
219 | + return count($this->elements); |
|
220 | 220 | } |
221 | 221 | |
222 | 222 | /** |
@@ -226,11 +226,11 @@ discard block |
||
226 | 226 | * |
227 | 227 | * @throws LogicException |
228 | 228 | */ |
229 | - protected function parse_config( array $config ) { |
|
230 | - if ( isset( $config['model'] ) ) { |
|
229 | + protected function parse_config(array $config) { |
|
230 | + if (isset($config['model'])) { |
|
231 | 231 | $model = $config['model']; |
232 | 232 | |
233 | - if ( ! is_subclass_of( $model, 'Intraxia\Jaxion\Axolotl\Model' ) ) { |
|
233 | + if (!is_subclass_of($model, 'Intraxia\Jaxion\Axolotl\Model')) { |
|
234 | 234 | throw new LogicException; |
235 | 235 | } |
236 | 236 |