@@ -117,7 +117,7 @@ |
||
| 117 | 117 | { |
| 118 | 118 | $token = $this->wildcard; |
| 119 | 119 | |
| 120 | - return array_map(function ($word) use ($token) { |
|
| 120 | + return array_map(function($word) use ($token) { |
|
| 121 | 121 | return preg_replace('/\*+/', '*', "{$token}{$word}{$token}"); |
| 122 | 122 | }, $words); |
| 123 | 123 | } |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | protected function registerMutator() |
| 41 | 41 | { |
| 42 | - $this->app->singleton('eloquence.mutator', function () { |
|
| 42 | + $this->app->singleton('eloquence.mutator', function() { |
|
| 43 | 43 | return new Mutator; |
| 44 | 44 | }); |
| 45 | 45 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | protected function registerJoiner() |
| 55 | 55 | { |
| 56 | - $this->app->singleton('eloquence.joiner', function () { |
|
| 56 | + $this->app->singleton('eloquence.joiner', function() { |
|
| 57 | 57 | return new JoinerFactory; |
| 58 | 58 | }); |
| 59 | 59 | |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | protected function registerParser() |
| 69 | 69 | { |
| 70 | - $this->app->singleton('eloquence.parser', function () { |
|
| 70 | + $this->app->singleton('eloquence.parser', function() { |
|
| 71 | 71 | return new ParserFactory; |
| 72 | 72 | }); |
| 73 | 73 | |
@@ -66,12 +66,12 @@ |
||
| 66 | 66 | */ |
| 67 | 67 | public function getValue() |
| 68 | 68 | { |
| 69 | - $sql = '('.$this->query->toSql().')'; |
|
| 69 | + $sql = '(' . $this->query->toSql() . ')'; |
|
| 70 | 70 | |
| 71 | 71 | if ($this->alias) { |
| 72 | 72 | $alias = $this->query->getGrammar()->wrapTable($this->alias); |
| 73 | 73 | |
| 74 | - $sql .= ' as '.$alias; |
|
| 74 | + $sql .= ' as ' . $alias; |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | return $sql; |
@@ -27,12 +27,12 @@ discard block |
||
| 27 | 27 | // We want to update each unique rule so it ignores this model's row |
| 28 | 28 | // during unique check in order to avoid faulty non-unique errors |
| 29 | 29 | // in accordance to the linked Laravel Validator documentation. |
| 30 | - array_walk($rules, function (&$fieldRules, $field) use ($id, $primaryKey) { |
|
| 30 | + array_walk($rules, function(&$fieldRules, $field) use ($id, $primaryKey) { |
|
| 31 | 31 | if (is_string($fieldRules)) { |
| 32 | 32 | $fieldRules = explode('|', $fieldRules); |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - array_walk($fieldRules, function (&$rule) use ($field, $id, $primaryKey) { |
|
| 35 | + array_walk($fieldRules, function(&$rule) use ($field, $id, $primaryKey) { |
|
| 36 | 36 | if (strpos($rule, 'unique') === false) { |
| 37 | 37 | return; |
| 38 | 38 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | $args[2] = $id; |
| 46 | 46 | $args[3] = $primaryKey; |
| 47 | 47 | |
| 48 | - $rule = 'unique:'.implode(',', $args); |
|
| 48 | + $rule = 'unique:' . implode(',', $args); |
|
| 49 | 49 | }); |
| 50 | 50 | }); |
| 51 | 51 | |
@@ -129,7 +129,7 @@ |
||
| 129 | 129 | */ |
| 130 | 130 | public function toArray() |
| 131 | 131 | { |
| 132 | - return array_filter(array_map(function ($attribute) { |
|
| 132 | + return array_filter(array_map(function($attribute) { |
|
| 133 | 133 | return $attribute->getValue(); |
| 134 | 134 | }, $this->items)); |
| 135 | 135 | } |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | */ |
| 20 | 20 | public function queryHook() |
| 21 | 21 | { |
| 22 | - return function ($next, $query, $bag) { |
|
| 22 | + return function($next, $query, $bag) { |
|
| 23 | 23 | $method = $bag->get('method'); |
| 24 | 24 | $args = $bag->get('args'); |
| 25 | 25 | $column = $args->get('column'); |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | { |
| 41 | 41 | return function($next, $attributes = null, $bag) { |
| 42 | 42 | if (is_array($attributes)) { |
| 43 | - $attributes = array_map(function ($attribute) { |
|
| 43 | + $attributes = array_map(function($attribute) { |
|
| 44 | 44 | return $this->getMappingForAttribute($attribute) ?: $attribute; |
| 45 | 45 | }, $attributes); |
| 46 | 46 | } |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function save() |
| 59 | 59 | { |
| 60 | - return function ($next, $value, $args) { |
|
| 60 | + return function($next, $value, $args) { |
|
| 61 | 61 | $this->saveMapped(); |
| 62 | 62 | |
| 63 | 63 | return $next($value, $args); |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | */ |
| 74 | 74 | public function __issetHook() |
| 75 | 75 | { |
| 76 | - return function ($next, $isset, $args) { |
|
| 76 | + return function($next, $isset, $args) { |
|
| 77 | 77 | $key = $args->get('key'); |
| 78 | 78 | |
| 79 | 79 | if (!$isset && $this->hasMapping($key)) { |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | */ |
| 94 | 94 | public function __unsetHook() |
| 95 | 95 | { |
| 96 | - return function ($next, $value, $args) { |
|
| 96 | + return function($next, $value, $args) { |
|
| 97 | 97 | $key = $args->get('key'); |
| 98 | 98 | |
| 99 | 99 | if ($this->hasMapping($key)) { |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | public function getAttribute() |
| 115 | 115 | { |
| 116 | - return function ($next, $value, $args) { |
|
| 116 | + return function($next, $value, $args) { |
|
| 117 | 117 | $key = $args->get('key'); |
| 118 | 118 | |
| 119 | 119 | if ($this->hasMapping($key)) { |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | */ |
| 134 | 134 | public function setAttribute() |
| 135 | 135 | { |
| 136 | - return function ($next, $value, $args) { |
|
| 136 | + return function($next, $value, $args) { |
|
| 137 | 137 | $key = $args->get('key'); |
| 138 | 138 | |
| 139 | 139 | if ($this->hasMapping($key)) { |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | |
| 147 | 147 | public function __call($method, $params) |
| 148 | 148 | { |
| 149 | - if (strpos($method, '__') === 0 && method_exists($this, $method.'Hook')) { |
|
| 150 | - return call_user_func_array([$this, $method.'Hook'], $params); |
|
| 149 | + if (strpos($method, '__') === 0 && method_exists($this, $method . 'Hook')) { |
|
| 150 | + return call_user_func_array([$this, $method . 'Hook'], $params); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | throw new BadMethodCallException("Method [{$method}] doesn't exist on this object."); |