Completed
Push — master ( 438599...7e3774 )
by tac
04:03
created
lib/Widget/Endpoint.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
lib/Field/BooleanField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
 {
7 7
     public function cast()
8 8
     {
9
-        return (boolean)$this->value();
9
+        return (boolean) $this->value();
10 10
     }
11 11
 }
Please login to merge, or discard this patch.
lib/Field/StringField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,6 +7,6 @@
 block discarded – undo
7 7
 
8 8
     public function cast()
9 9
     {
10
-        return (string)$this->value();
10
+        return (string) $this->value();
11 11
     }
12 12
 }
Please login to merge, or discard this patch.