@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | |
227 | 227 | $this->overwriteExistingField($name); |
228 | 228 | |
229 | - return tap($field, function ($field) { |
|
229 | + return tap($field, function($field) { |
|
230 | 230 | $this->fields->push($field); |
231 | 231 | }); |
232 | 232 | } |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | |
249 | 249 | $this->overwriteExistingRelation($name); |
250 | 250 | |
251 | - return tap($relation, function ($relation) { |
|
251 | + return tap($relation, function($relation) { |
|
252 | 252 | $this->relations->push($relation); |
253 | 253 | }); |
254 | 254 | } |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | } |
266 | 266 | |
267 | 267 | $this->fields = $this->fields->filter( |
268 | - function (Field $field) use ($name) { |
|
268 | + function(Field $field) use ($name) { |
|
269 | 269 | return $field->getName() != $name; |
270 | 270 | } |
271 | 271 | ); |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | } |
284 | 284 | |
285 | 285 | $this->relations = $this->relations->filter( |
286 | - function (Relation $relation) use ($name) { |
|
286 | + function(Relation $relation) use ($name) { |
|
287 | 287 | return $relation->getName() != $name; |
288 | 288 | } |
289 | 289 | ); |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | */ |
341 | 341 | public function setWidth($fieldWidth = 8, $labelWidth = 2) |
342 | 342 | { |
343 | - collect($this->fields)->each(function ($field) use ($fieldWidth, $labelWidth) { |
|
343 | + collect($this->fields)->each(function($field) use ($fieldWidth, $labelWidth) { |
|
344 | 344 | $field->setWidth($fieldWidth, $labelWidth); |
345 | 345 | }); |
346 | 346 |