We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function getTitle($action = false) |
23 | 23 | { |
24 | - if (! $action) { |
|
24 | + if (!$action) { |
|
25 | 25 | $action = $this->getActionMethod(); |
26 | 26 | } |
27 | 27 | |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function setTitle($string, $action = false) |
40 | 40 | { |
41 | - if (! $action) { |
|
41 | + if (!$action) { |
|
42 | 42 | $action = $this->getActionMethod(); |
43 | 43 | } |
44 | 44 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | */ |
59 | 59 | public function getHeading($action = false) |
60 | 60 | { |
61 | - if (! $action) { |
|
61 | + if (!$action) { |
|
62 | 62 | $action = $this->getActionMethod(); |
63 | 63 | } |
64 | 64 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function setHeading($string, $action = false) |
77 | 77 | { |
78 | - if (! $action) { |
|
78 | + if (!$action) { |
|
79 | 79 | $action = $this->getActionMethod(); |
80 | 80 | } |
81 | 81 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | */ |
96 | 96 | public function getSubheading($action = false) |
97 | 97 | { |
98 | - if (! $action) { |
|
98 | + if (!$action) { |
|
99 | 99 | $action = $this->getActionMethod(); |
100 | 100 | } |
101 | 101 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | */ |
113 | 113 | public function setSubheading($string, $action = false) |
114 | 114 | { |
115 | - if (! $action) { |
|
115 | + if (!$action) { |
|
116 | 116 | $action = $this->getActionMethod(); |
117 | 117 | } |
118 | 118 |
@@ -90,11 +90,11 @@ discard block |
||
90 | 90 | */ |
91 | 91 | public function setModel($model_namespace) |
92 | 92 | { |
93 | - if (! class_exists($model_namespace)) { |
|
93 | + if (!class_exists($model_namespace)) { |
|
94 | 94 | throw new \Exception('The model does not exist.', 500); |
95 | 95 | } |
96 | 96 | |
97 | - if (! method_exists($model_namespace, 'hasCrudTrait')) { |
|
97 | + if (!method_exists($model_namespace, 'hasCrudTrait')) { |
|
98 | 98 | throw new \Exception('Please use CrudTrait on the model.', 500); |
99 | 99 | } |
100 | 100 | |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | { |
148 | 148 | $complete_route = $route.'.index'; |
149 | 149 | |
150 | - if (! \Route::has($complete_route)) { |
|
150 | + if (!\Route::has($complete_route)) { |
|
151 | 151 | throw new \Exception('There are no routes for this route name.', 404); |
152 | 152 | } |
153 | 153 | |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | */ |
249 | 249 | public function getFirstOfItsTypeInArray($type, $array) |
250 | 250 | { |
251 | - return array_first($array, function ($item) use ($type) { |
|
251 | + return array_first($array, function($item) use ($type) { |
|
252 | 252 | return $item['type'] == $type; |
253 | 253 | }); |
254 | 254 | } |
@@ -265,8 +265,8 @@ discard block |
||
265 | 265 | |
266 | 266 | public function sync($type, $fields, $attributes) |
267 | 267 | { |
268 | - if (! empty($this->{$type})) { |
|
269 | - $this->{$type} = array_map(function ($field) use ($fields, $attributes) { |
|
268 | + if (!empty($this->{$type})) { |
|
269 | + $this->{$type} = array_map(function($field) use ($fields, $attributes) { |
|
270 | 270 | if (in_array($field['name'], (array) $fields)) { |
271 | 271 | $field = array_merge($field, $attributes); |
272 | 272 | } |
@@ -298,8 +298,8 @@ discard block |
||
298 | 298 | } |
299 | 299 | } |
300 | 300 | |
301 | - return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function ($item) use ($items) { |
|
302 | - return ! in_array($item['name'], $this->sort[$items]); |
|
301 | + return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use ($items) { |
|
302 | + return !in_array($item['name'], $this->sort[$items]); |
|
303 | 303 | })); |
304 | 304 | } |
305 | 305 | |
@@ -328,15 +328,15 @@ discard block |
||
328 | 328 | { |
329 | 329 | $relationArray = explode('.', $relationString); |
330 | 330 | |
331 | - if (! isset($length)) { |
|
331 | + if (!isset($length)) { |
|
332 | 332 | $length = count($relationArray); |
333 | 333 | } |
334 | 334 | |
335 | - if (! isset($model)) { |
|
335 | + if (!isset($model)) { |
|
336 | 336 | $model = $this->model; |
337 | 337 | } |
338 | 338 | |
339 | - $result = array_reduce(array_splice($relationArray, 0, $length), function ($obj, $method) { |
|
339 | + $result = array_reduce(array_splice($relationArray, 0, $length), function($obj, $method) { |
|
340 | 340 | return $obj->$method()->getRelated(); |
341 | 341 | }, $model); |
342 | 342 | |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | $relation = $model->{$firstRelationName}; |
387 | 387 | |
388 | 388 | $results = []; |
389 | - if (! empty($relation)) { |
|
389 | + if (!empty($relation)) { |
|
390 | 390 | if ($relation instanceof Collection) { |
391 | 391 | $currentResults = $relation->toArray(); |
392 | 392 | } else { |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | |
396 | 396 | array_shift($relationArray); |
397 | 397 | |
398 | - if (! empty($relationArray)) { |
|
398 | + if (!empty($relationArray)) { |
|
399 | 399 | foreach ($currentResults as $currentResult) { |
400 | 400 | $results = array_merge($results, $this->getRelationModelInstances($currentResult, implode('.', $relationArray))); |
401 | 401 | } |
@@ -2,31 +2,31 @@ |
||
2 | 2 | |
3 | 3 | namespace Backpack\CRUD; |
4 | 4 | |
5 | -use Backpack\CRUD\PanelTraits\Read; |
|
6 | -use Backpack\CRUD\PanelTraits\Tabs; |
|
7 | -use Backpack\CRUD\PanelTraits\Query; |
|
8 | -use Backpack\CRUD\PanelTraits\Views; |
|
9 | 5 | use Backpack\CRUD\PanelTraits\Access; |
6 | +use Backpack\CRUD\PanelTraits\AutoFocus; |
|
7 | +use Backpack\CRUD\PanelTraits\AutoSet; |
|
8 | +use Backpack\CRUD\PanelTraits\Buttons; |
|
9 | +use Backpack\CRUD\PanelTraits\Columns; |
|
10 | 10 | use Backpack\CRUD\PanelTraits\Create; |
11 | 11 | use Backpack\CRUD\PanelTraits\Delete; |
12 | 12 | use Backpack\CRUD\PanelTraits\Errors; |
13 | +use Backpack\CRUD\PanelTraits\FakeColumns; |
|
14 | +use Backpack\CRUD\PanelTraits\FakeFields; |
|
13 | 15 | use Backpack\CRUD\PanelTraits\Fields; |
14 | -use Backpack\CRUD\PanelTraits\Search; |
|
15 | -use Backpack\CRUD\PanelTraits\Update; |
|
16 | -use Backpack\CRUD\PanelTraits\AutoSet; |
|
17 | -use Backpack\CRUD\PanelTraits\Buttons; |
|
18 | -use Backpack\CRUD\PanelTraits\Columns; |
|
19 | 16 | use Backpack\CRUD\PanelTraits\Filters; |
20 | -use Backpack\CRUD\PanelTraits\Reorder; |
|
21 | -use Backpack\CRUD\PanelTraits\AutoFocus; |
|
17 | +use Backpack\CRUD\PanelTraits\HeadingsAndTitle; |
|
22 | 18 | use Backpack\CRUD\PanelTraits\Macroable; |
23 | -use Backpack\CRUD\PanelTraits\FakeFields; |
|
24 | 19 | use Backpack\CRUD\PanelTraits\Operations; |
25 | -use Backpack\CRUD\PanelTraits\FakeColumns; |
|
26 | -use Illuminate\Database\Eloquent\Collection; |
|
20 | +use Backpack\CRUD\PanelTraits\Query; |
|
21 | +use Backpack\CRUD\PanelTraits\Read; |
|
22 | +use Backpack\CRUD\PanelTraits\Reorder; |
|
27 | 23 | use Backpack\CRUD\PanelTraits\RequiredFields; |
28 | -use Backpack\CRUD\PanelTraits\HeadingsAndTitle; |
|
24 | +use Backpack\CRUD\PanelTraits\Search; |
|
25 | +use Backpack\CRUD\PanelTraits\Tabs; |
|
26 | +use Backpack\CRUD\PanelTraits\Update; |
|
27 | +use Backpack\CRUD\PanelTraits\Views; |
|
29 | 28 | use Backpack\CRUD\PanelTraits\ViewsAndRestoresRevisions; |
29 | +use Illuminate\Database\Eloquent\Collection; |
|
30 | 30 | |
31 | 31 | class CrudPanel |
32 | 32 | { |
@@ -16,7 +16,7 @@ |
||
16 | 16 | $this->crud->hasAccessOrFail('reorder'); |
17 | 17 | $this->crud->setOperation('Reorder'); |
18 | 18 | |
19 | - if (! $this->crud->isReorderEnabled()) { |
|
19 | + if (!$this->crud->isReorderEnabled()) { |
|
20 | 20 | abort(403, 'Reorder is disabled.'); |
21 | 21 | } |
22 | 22 |
@@ -46,7 +46,7 @@ |
||
46 | 46 | $this->crud->setOperation('Revisions'); |
47 | 47 | |
48 | 48 | $revisionId = \Request::input('revision_id', false); |
49 | - if (! $revisionId) { |
|
49 | + if (!$revisionId) { |
|
50 | 50 | abort(500, 'Can\'t restore revision without revision_id'); |
51 | 51 | } else { |
52 | 52 | $this->crud->restoreRevision($id, $revisionId); // do the update |
@@ -2,7 +2,7 @@ |
||
2 | 2 | <div @include('crud::inc.field_wrapper_attributes') > |
3 | 3 | <label>{!! $field['label'] !!}</label> |
4 | 4 | @include('crud::inc.field_translatable_icon') |
5 | - <?php $entity_model = $crud->getRelationModel($field['entity'], - 1); ?> |
|
5 | + <?php $entity_model = $crud->getRelationModel($field['entity'], - 1); ?> |
|
6 | 6 | <select |
7 | 7 | name="{{ $field['name'] }}" |
8 | 8 | style="width: 100%" |