@@ -54,7 +54,7 @@ |
||
| 54 | 54 | $modelClass = get_class($this->model); |
| 55 | 55 | |
| 56 | 56 | return Collection::make($this->query()) |
| 57 | - ->map(function ($result) use ($modelClass) { |
|
| 57 | + ->map(function($result) use ($modelClass) { |
|
| 58 | 58 | return new $modelClass($result); |
| 59 | 59 | }); |
| 60 | 60 | } |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | return $this->object; |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | - if (! is_null($aliased = $this->aliasGet($property))) { |
|
| 199 | + if (!is_null($aliased = $this->aliasGet($property))) { |
|
| 200 | 200 | return $aliased; |
| 201 | 201 | } |
| 202 | 202 | |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | */ |
| 216 | 216 | public function __isset($property) |
| 217 | 217 | { |
| 218 | - return ! is_null($this->__get($property)); |
|
| 218 | + return !is_null($this->__get($property)); |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | /** |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | */ |
| 30 | 30 | protected function aliasGet($key) |
| 31 | 31 | { |
| 32 | - if (! $expanded = $this->expandAlias($key)) { |
|
| 32 | + if (!$expanded = $this->expandAlias($key)) { |
|
| 33 | 33 | return null; |
| 34 | 34 | } |
| 35 | 35 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | */ |
| 59 | 59 | public function __get($property) |
| 60 | 60 | { |
| 61 | - if (! is_null($aliased = $this->aliasGet($property))) { |
|
| 61 | + if (!is_null($aliased = $this->aliasGet($property))) { |
|
| 62 | 62 | return $aliased; |
| 63 | 63 | } |
| 64 | 64 | |
@@ -74,6 +74,6 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | public function __isset($property) |
| 76 | 76 | { |
| 77 | - return ! is_null($this->__get($property)); |
|
| 77 | + return !is_null($this->__get($property)); |
|
| 78 | 78 | } |
| 79 | 79 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | */ |
| 46 | 46 | public function __construct($taxonomy) |
| 47 | 47 | { |
| 48 | - if (empty($taxonomy->name) || ! static::exists($taxonomy->name)) { |
|
| 48 | + if (empty($taxonomy->name) || !static::exists($taxonomy->name)) { |
|
| 49 | 49 | throw new NonExistentTaxonomyException; |
| 50 | 50 | } |
| 51 | 51 | |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | return static::load($id); |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - if (! $id || strlen($id) > 32) { |
|
| 70 | + if (!$id || strlen($id) > 32) { |
|
| 71 | 71 | throw new InvalidTaxonomyNameException('Taxonomy names must be between 1 and 32 characters in length.'); |
| 72 | 72 | } |
| 73 | 73 | |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | */ |
| 86 | 86 | public static function load($id) |
| 87 | 87 | { |
| 88 | - if (! $object = get_taxonomy($id)) { |
|
| 88 | + if (!$object = get_taxonomy($id)) { |
|
| 89 | 89 | throw new NonExistentTaxonomyException("No taxonomy exists with name '$id'."); |
| 90 | 90 | } |
| 91 | 91 | |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | public function postTypes() |
| 143 | 143 | { |
| 144 | 144 | return Collection::make($this->object_type) |
| 145 | - ->map(function ($post_type) { |
|
| 145 | + ->map(function($post_type) { |
|
| 146 | 146 | return PostType::load($post_type); |
| 147 | 147 | }); |
| 148 | 148 | } |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | public function unregister() |
| 159 | 159 | { |
| 160 | - if (! $this->exists($this->id())) { |
|
| 160 | + if (!$this->exists($this->id())) { |
|
| 161 | 161 | throw new NonExistentTaxonomyException; |
| 162 | 162 | } |
| 163 | 163 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | { |
| 54 | 54 | $attributes = is_array($term) ? $term : []; |
| 55 | 55 | |
| 56 | - if (! $term instanceof WP_Term) { |
|
| 56 | + if (!$term instanceof WP_Term) { |
|
| 57 | 57 | $term = new WP_Term(new stdClass); |
| 58 | 58 | $term->taxonomy = static::TAXONOMY; |
| 59 | 59 | } elseif ($term->taxonomy != static::TAXONOMY) { |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | */ |
| 90 | 90 | public static function fromID($id) |
| 91 | 91 | { |
| 92 | - if (! $term = WP_Term::get_instance($id, static::TAXONOMY)) { |
|
| 92 | + if (!$term = WP_Term::get_instance($id, static::TAXONOMY)) { |
|
| 93 | 93 | throw new TermNotFoundException("No term found with ID $id."); |
| 94 | 94 | } |
| 95 | 95 | |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | */ |
| 108 | 108 | public static function fromSlug($slug) |
| 109 | 109 | { |
| 110 | - if (! $term = get_term_by('slug', $slug, static::TAXONOMY)) { |
|
| 110 | + if (!$term = get_term_by('slug', $slug, static::TAXONOMY)) { |
|
| 111 | 111 | throw new TermNotFoundException("No term found with slug '$slug'."); |
| 112 | 112 | } |
| 113 | 113 | |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | use Silk\Event\Hook; |
| 4 | 4 | |
| 5 | -if (! function_exists('on')) : |
|
| 5 | +if (!function_exists('on')) : |
|
| 6 | 6 | /** |
| 7 | 7 | * Create and set a new event listener. |
| 8 | 8 | * |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | } |
| 21 | 21 | endif; |
| 22 | 22 | |
| 23 | -if (! function_exists('off')) : |
|
| 23 | +if (!function_exists('off')) : |
|
| 24 | 24 | /** |
| 25 | 25 | * Remove an event listener. |
| 26 | 26 | * |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * Here we add a new listener right before the hook is expected to fire, |
| 44 | 44 | * so that if it is there, we can unhook it just in time. |
| 45 | 45 | */ |
| 46 | - return on($handle, function ($given = null) use ($handle, $callback, $priority) { |
|
| 46 | + return on($handle, function($given = null) use ($handle, $callback, $priority) { |
|
| 47 | 47 | remove_filter($handle, $callback, $priority); |
| 48 | 48 | return $given; |
| 49 | 49 | })->withPriority($priority - 1); |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | public function __construct(WP_Query $query = null) |
| 26 | 26 | { |
| 27 | - if (! $query) { |
|
| 27 | + if (!$query) { |
|
| 28 | 28 | $query = new WP_Query(); |
| 29 | 29 | } |
| 30 | 30 | |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | */ |
| 54 | 54 | public function toArray() |
| 55 | 55 | { |
| 56 | - return $this->map(function ($label) { |
|
| 56 | + return $this->map(function($label) { |
|
| 57 | 57 | return str_replace( |
| 58 | 58 | [ |
| 59 | 59 | '{one}', |