@@ -57,7 +57,7 @@ |
||
| 57 | 57 | $this->failHook($exception); |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - return tap($value, function ($value) { |
|
| 60 | + return tap($value, function($value) { |
|
| 61 | 61 | $this->successHook($value); |
| 62 | 62 | }); |
| 63 | 63 | } |
@@ -23,13 +23,13 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | //BIND the value to the first parameter with the correct type |
| 25 | 25 | collect($parameters) |
| 26 | - ->filter(function (\ReflectionParameter $parameter) { |
|
| 26 | + ->filter(function(\ReflectionParameter $parameter) { |
|
| 27 | 27 | return $parameter->hasType(); |
| 28 | 28 | }) |
| 29 | - ->filter(function (\ReflectionParameter $parameter) use ($result) { |
|
| 29 | + ->filter(function(\ReflectionParameter $parameter) use ($result) { |
|
| 30 | 30 | return (gettype($result) === 'object' ? get_class($result) : gettype($result)) === $parameter->getType()->getName(); |
| 31 | 31 | }) |
| 32 | - ->each(function (\ReflectionParameter $parameter) use ($result, &$extraParameter) { |
|
| 32 | + ->each(function(\ReflectionParameter $parameter) use ($result, &$extraParameter) { |
|
| 33 | 33 | $extraParameter = [$parameter->getName() => $result]; |
| 34 | 34 | |
| 35 | 35 | return false; |
@@ -43,10 +43,10 @@ discard block |
||
| 43 | 43 | //IF there's not a parameter with the same name as the value type |
| 44 | 44 | //CHOOSE the first value that doesn't have a type |
| 45 | 45 | collect($parameters) |
| 46 | - ->filter(function (\ReflectionParameter $parameter) { |
|
| 47 | - return ! $parameter->hasType(); |
|
| 46 | + ->filter(function(\ReflectionParameter $parameter) { |
|
| 47 | + return !$parameter->hasType(); |
|
| 48 | 48 | }) |
| 49 | - ->each(function (\ReflectionParameter $parameter) use ($result, &$extraParameter) { |
|
| 49 | + ->each(function(\ReflectionParameter $parameter) use ($result, &$extraParameter) { |
|
| 50 | 50 | if ($extraParameter === null) { |
| 51 | 51 | $extraParameter = [$parameter->getName() => $result]; |
| 52 | 52 | } elseif (strcasecmp(substr(strrchr(get_class($result), '\\'), 1), $parameter->getName()) == 0) { |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | return $this->jsonResponse($result, $request); |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | - if (method_exists($this, 'htmlResponse') && ! $request->wantsJson()) { |
|
| 34 | + if (method_exists($this, 'htmlResponse') && !$request->wantsJson()) { |
|
| 35 | 35 | return $this->htmlResponse($result, $request); |
| 36 | 36 | } |
| 37 | 37 | |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | { |
| 9 | 9 | protected function failHook(Throwable $exception) |
| 10 | 10 | { |
| 11 | - if (! method_exists($this, 'onFail')) { |
|
| 11 | + if (!method_exists($this, 'onFail')) { |
|
| 12 | 12 | throw $exception; |
| 13 | 13 | } |
| 14 | 14 | $this->resolveAndCall($this, 'onFail', compact('exception')); |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | { |
| 10 | 10 | protected function resolveAuthorization() |
| 11 | 11 | { |
| 12 | - if (! $this->passesAuthorization()) { |
|
| 12 | + if (!$this->passesAuthorization()) { |
|
| 13 | 13 | $this->failedAuthorization(); |
| 14 | 14 | } |
| 15 | 15 | |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | $attribute = static::make(); |
| 59 | 59 | $attribute->setRules( |
| 60 | 60 | collect($attribute->getRules()) |
| 61 | - ->reject(function ($value) { |
|
| 61 | + ->reject(function($value) { |
|
| 62 | 62 | return $value === 'required'; |
| 63 | 63 | }) |
| 64 | 64 | ->toArray() |
@@ -19,13 +19,13 @@ |
||
| 19 | 19 | protected function resolveAttributeCasting() |
| 20 | 20 | { |
| 21 | 21 | $attributes = new Collection($this->rules()); |
| 22 | - $attributes = (new Collection($this->rules()))->filter(function ($rule) { |
|
| 22 | + $attributes = (new Collection($this->rules()))->filter(function($rule) { |
|
| 23 | 23 | return $rule instanceof Attribute; |
| 24 | 24 | }); |
| 25 | 25 | |
| 26 | 26 | $data = $this->validated(); |
| 27 | 27 | |
| 28 | - $castedValues = $attributes->intersectByKeys($this->validated())->map(function (Attribute $value, $key) { |
|
| 28 | + $castedValues = $attributes->intersectByKeys($this->validated())->map(function(Attribute $value, $key) { |
|
| 29 | 29 | return $value->cast($this->validated()[$key]); |
| 30 | 30 | }); |
| 31 | 31 | |
@@ -29,10 +29,10 @@ |
||
| 29 | 29 | protected function resolveAttributeDefaults() |
| 30 | 30 | { |
| 31 | 31 | $defaults = collect($this->rules()) |
| 32 | - ->filter(function ($rule, $key) { |
|
| 32 | + ->filter(function($rule, $key) { |
|
| 33 | 33 | return $rule instanceof Attribute && $rule->hasDefault(); |
| 34 | 34 | }) |
| 35 | - ->map(function (Attribute $attribute) { |
|
| 35 | + ->map(function(Attribute $attribute) { |
|
| 36 | 36 | return $attribute->getDefault(); |
| 37 | 37 | }) |
| 38 | 38 | ->toArray(); |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | foreach ($this->includes() as $key => $included) { |
| 34 | - if (! array_key_exists($key, $rules)) { |
|
| 34 | + if (!array_key_exists($key, $rules)) { |
|
| 35 | 35 | $rules[$key] = 'required'; |
| 36 | 36 | } |
| 37 | 37 | } |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | protected function resolveValidation() |
| 75 | 75 | { |
| 76 | - if (! $this->passesValidation()) { |
|
| 76 | + if (!$this->passesValidation()) { |
|
| 77 | 77 | $this->failedValidation(); |
| 78 | 78 | } |
| 79 | 79 | |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | if (method_exists($this, 'afterValidator')) { |
| 100 | - $validator->after(function ($validator) { |
|
| 100 | + $validator->after(function($validator) { |
|
| 101 | 101 | $this->resolveAndCall($this, 'afterValidator', compact('validator')); |
| 102 | 102 | }); |
| 103 | 103 | } |