@@ -7,7 +7,6 @@ |
||
7 | 7 | use Countable; |
8 | 8 | use Illuminate\Contracts\Support\Arrayable; |
9 | 9 | use Illuminate\Contracts\Support\Jsonable; |
10 | -use Illuminate\Contracts\Support\Renderable; |
|
11 | 10 | use IteratorAggregate; |
12 | 11 | use Tacone\Bees\Base\DelegatedArrayTrait; |
13 | 12 | use Tacone\Bees\Collection\FieldCollection; |
@@ -240,7 +240,7 @@ |
||
240 | 240 | } else { |
241 | 241 | // TODO: move this to the middleware |
242 | 242 | // HTTP_UNPROCESSABLE_ENTITY |
243 | - App::abort(422, $this->errors() ); |
|
243 | + App::abort(422, $this->errors()); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | } |
@@ -6,6 +6,6 @@ |
||
6 | 6 | { |
7 | 7 | public function cast() |
8 | 8 | { |
9 | - return (boolean)$this->value(); |
|
9 | + return (boolean) $this->value(); |
|
10 | 10 | } |
11 | 11 | } |
@@ -7,6 +7,6 @@ |
||
7 | 7 | |
8 | 8 | public function cast() |
9 | 9 | { |
10 | - return (string)$this->value(); |
|
10 | + return (string) $this->value(); |
|
11 | 11 | } |
12 | 12 | } |