We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -2,8 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace Backpack\CRUD\ModelTraits\SpatieTranslatable; |
4 | 4 | |
5 | -use Illuminate\Database\Eloquent\Model; |
|
6 | 5 | use Illuminate\Contracts\Events\Dispatcher; |
6 | +use Illuminate\Database\Eloquent\Model; |
|
7 | 7 | |
8 | 8 | class SluggableObserver extends \Cviebrock\EloquentSluggable\SluggableObserver |
9 | 9 | { |
@@ -49,7 +49,7 @@ |
||
49 | 49 | */ |
50 | 50 | protected function makeSlugUnique($slug, array $config, $attribute) |
51 | 51 | { |
52 | - if (! $config['unique']) { |
|
52 | + if (!$config['unique']) { |
|
53 | 53 | return $slug; |
54 | 54 | } |
55 | 55 |
@@ -47,7 +47,7 @@ |
||
47 | 47 | $separator = $config['separator']; |
48 | 48 | $attribute = $attribute.'->'.$this->getLocale(); |
49 | 49 | |
50 | - return $query->where(function (Builder $q) use ($attribute, $slug, $separator) { |
|
50 | + return $query->where(function(Builder $q) use ($attribute, $slug, $separator) { |
|
51 | 51 | $q->where($attribute, '=', $slug) |
52 | 52 | ->orWhere($attribute, 'LIKE', $slug.$separator.'%'); |
53 | 53 | }); |
@@ -2,9 +2,9 @@ |
||
2 | 2 | |
3 | 3 | namespace Backpack\CRUD\ModelTraits\SpatieTranslatable; |
4 | 4 | |
5 | -use Illuminate\Database\Eloquent\Model; |
|
6 | -use Illuminate\Database\Eloquent\Builder; |
|
7 | 5 | use Cviebrock\EloquentSluggable\Sluggable as OriginalSluggable; |
6 | +use Illuminate\Database\Eloquent\Builder; |
|
7 | +use Illuminate\Database\Eloquent\Model; |
|
8 | 8 | |
9 | 9 | trait Sluggable |
10 | 10 | { |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | */ |
25 | 25 | public function getAttributeValue($key) |
26 | 26 | { |
27 | - if (! $this->isTranslatableAttribute($key)) { |
|
27 | + if (!$this->isTranslatableAttribute($key)) { |
|
28 | 28 | return parent::getAttributeValue($key); |
29 | 29 | } |
30 | 30 | |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | */ |
73 | 73 | public function update(array $attributes = [], array $options = []) |
74 | 74 | { |
75 | - if (! $this->exists) { |
|
75 | + if (!$this->exists) { |
|
76 | 76 | return false; |
77 | 77 | } |
78 | 78 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $this->crud->hasAccessOrFail('revisions'); |
42 | 42 | |
43 | 43 | $revisionId = \Request::input('revision_id', false); |
44 | - if (! $revisionId) { |
|
44 | + if (!$revisionId) { |
|
45 | 45 | abort(500, 'Can\'t restore revision without revision_id'); |
46 | 46 | } else { |
47 | 47 | $this->crud->restoreRevision($id, $revisionId); // do the update |
@@ -27,12 +27,12 @@ discard block |
||
27 | 27 | |
28 | 28 | public function __construct() |
29 | 29 | { |
30 | - if (! $this->crud) { |
|
30 | + if (!$this->crud) { |
|
31 | 31 | $this->crud = app()->make(CrudPanel::class); |
32 | 32 | |
33 | 33 | // call the setup function inside this closure to also have the request there |
34 | 34 | // this way, developers can use things stored in session (auth variables, etc) |
35 | - $this->middleware(function ($request, $next) { |
|
35 | + $this->middleware(function($request, $next) { |
|
36 | 36 | $this->request = $request; |
37 | 37 | $this->crud->request = $request; |
38 | 38 | $this->setup(); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | $this->data['title'] = ucfirst($this->crud->entity_name_plural); |
63 | 63 | |
64 | 64 | // get all entries if AJAX is not enabled |
65 | - if (! $this->data['crud']->ajaxTable()) { |
|
65 | + if (!$this->data['crud']->ajaxTable()) { |
|
66 | 66 | $this->data['entries'] = $this->data['crud']->getEntries(); |
67 | 67 | } |
68 | 68 |
@@ -3,19 +3,17 @@ |
||
3 | 3 | namespace Backpack\CRUD\app\Http\Controllers; |
4 | 4 | |
5 | 5 | use Backpack\CRUD\CrudPanel; |
6 | -use Illuminate\Http\Request; |
|
7 | -use Illuminate\Support\Facades\Form as Form; |
|
6 | +use Backpack\CRUD\app\Http\Controllers\CrudFeatures\AjaxTable; |
|
7 | +use Backpack\CRUD\app\Http\Controllers\CrudFeatures\Reorder; |
|
8 | 8 | use Illuminate\Foundation\Bus\DispatchesJobs; |
9 | -use Illuminate\Routing\Controller as BaseController; |
|
10 | 9 | use Illuminate\Foundation\Validation\ValidatesRequests; |
11 | -use Backpack\CRUD\app\Http\Controllers\CrudFeatures\Reorder; |
|
12 | -use Backpack\CRUD\app\Http\Controllers\CrudFeatures\AjaxTable; |
|
10 | +use Illuminate\Http\Request; |
|
11 | +use Illuminate\Routing\Controller as BaseController; |
|
13 | 12 | // CRUD Traits for non-core features |
14 | 13 | use Backpack\CRUD\app\Http\Controllers\CrudFeatures\Revisions; |
15 | 14 | use Backpack\CRUD\app\Http\Controllers\CrudFeatures\SaveActions; |
16 | -use Backpack\CRUD\app\Http\Requests\CrudRequest as StoreRequest; |
|
17 | -use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest; |
|
18 | 15 | use Backpack\CRUD\app\Http\Controllers\CrudFeatures\ShowDetailsRow; |
16 | +use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest; |
|
19 | 17 | |
20 | 18 | class CrudController extends BaseController |
21 | 19 | { |
@@ -2,24 +2,24 @@ |
||
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\Update; |
|
15 | -use Backpack\CRUD\PanelTraits\AutoSet; |
|
16 | -use Backpack\CRUD\PanelTraits\Buttons; |
|
17 | -use Backpack\CRUD\PanelTraits\Columns; |
|
18 | 16 | use Backpack\CRUD\PanelTraits\Filters; |
17 | +use Backpack\CRUD\PanelTraits\Query; |
|
18 | +use Backpack\CRUD\PanelTraits\Read; |
|
19 | 19 | use Backpack\CRUD\PanelTraits\Reorder; |
20 | -use Backpack\CRUD\PanelTraits\AutoFocus; |
|
21 | -use Backpack\CRUD\PanelTraits\FakeFields; |
|
22 | -use Backpack\CRUD\PanelTraits\FakeColumns; |
|
20 | +use Backpack\CRUD\PanelTraits\Tabs; |
|
21 | +use Backpack\CRUD\PanelTraits\Update; |
|
22 | +use Backpack\CRUD\PanelTraits\Views; |
|
23 | 23 | use Backpack\CRUD\PanelTraits\ViewsAndRestoresRevisions; |
24 | 24 | |
25 | 25 | class CrudPanel |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public function setModel($model_namespace) |
86 | 86 | { |
87 | - if (! class_exists($model_namespace)) { |
|
87 | + if (!class_exists($model_namespace)) { |
|
88 | 88 | throw new \Exception('This model does not exist.', 404); |
89 | 89 | } |
90 | 90 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | { |
126 | 126 | $complete_route = $route.'.index'; |
127 | 127 | |
128 | - if (! \Route::has($complete_route)) { |
|
128 | + if (!\Route::has($complete_route)) { |
|
129 | 129 | throw new \Exception('There are no routes for this route name.', 404); |
130 | 130 | } |
131 | 131 | |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | */ |
176 | 176 | public function getFirstOfItsTypeInArray($type, $array) |
177 | 177 | { |
178 | - return array_first($array, function ($item) use ($type) { |
|
178 | + return array_first($array, function($item) use ($type) { |
|
179 | 179 | return $item['type'] == $type; |
180 | 180 | }); |
181 | 181 | } |
@@ -192,8 +192,8 @@ discard block |
||
192 | 192 | |
193 | 193 | public function sync($type, $fields, $attributes) |
194 | 194 | { |
195 | - if (! empty($this->{$type})) { |
|
196 | - $this->{$type} = array_map(function ($field) use ($fields, $attributes) { |
|
195 | + if (!empty($this->{$type})) { |
|
196 | + $this->{$type} = array_map(function($field) use ($fields, $attributes) { |
|
197 | 197 | if (in_array($field['name'], (array) $fields)) { |
198 | 198 | $field = array_merge($field, $attributes); |
199 | 199 | } |
@@ -219,8 +219,8 @@ discard block |
||
219 | 219 | } |
220 | 220 | } |
221 | 221 | |
222 | - return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function ($item) use ($items) { |
|
223 | - return ! in_array($item['name'], $this->sort[$items]); |
|
222 | + return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use ($items) { |
|
223 | + return !in_array($item['name'], $this->sort[$items]); |
|
224 | 224 | })); |
225 | 225 | } |
226 | 226 | |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | */ |
244 | 244 | private function getRelationModel($relationString) |
245 | 245 | { |
246 | - $result = array_reduce(explode('.', $relationString), function ($obj, $method) { |
|
246 | + $result = array_reduce(explode('.', $relationString), function($obj, $method) { |
|
247 | 247 | return $obj->$method()->getRelated(); |
248 | 248 | }, $this->model); |
249 | 249 |
@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace Backpack\CRUD; |
4 | 4 | |
5 | -use Route; |
|
6 | 5 | use Illuminate\Support\ServiceProvider; |
7 | 6 | |
8 | 7 | class CrudServiceProvider extends ServiceProvider |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function register() |
76 | 76 | { |
77 | - $this->app->bind('CRUD', function ($app) { |
|
77 | + $this->app->bind('CRUD', function($app) { |
|
78 | 78 | return new CRUD($app); |
79 | 79 | }); |
80 | 80 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | $loader->alias('Image', \Intervention\Image\Facades\Image::class); |
93 | 93 | |
94 | 94 | // map the elfinder prefix |
95 | - if (! \Config::get('elfinder.route.prefix')) { |
|
95 | + if (!\Config::get('elfinder.route.prefix')) { |
|
96 | 96 | \Config::set('elfinder.route.prefix', \Config::get('backpack.base.route_prefix').'/elfinder'); |
97 | 97 | } |
98 | 98 | } |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | { |
113 | 113 | $crudPubPath = public_path('vendor/backpack/crud'); |
114 | 114 | |
115 | - if (! is_dir($crudPubPath)) { |
|
115 | + if (!is_dir($crudPubPath)) { |
|
116 | 116 | return true; |
117 | 117 | } |
118 | 118 |
@@ -23,13 +23,13 @@ |
||
23 | 23 | } |
24 | 24 | } |
25 | 25 | |
26 | - //for update form, get initial state of the entity |
|
27 | - if( isset($id) && $id ){ |
|
26 | + //for update form, get initial state of the entity |
|
27 | + if( isset($id) && $id ){ |
|
28 | 28 | |
29 | 29 | //get entity with relations for primary dependency |
30 | 30 | $entity_dependencies = $entity_model->with($primary_dependency['entity']) |
31 | - ->with($primary_dependency['entity'].'.'.$primary_dependency['entity_secondary']) |
|
32 | - ->find($id); |
|
31 | + ->with($primary_dependency['entity'].'.'.$primary_dependency['entity_secondary']) |
|
32 | + ->find($id); |
|
33 | 33 | |
34 | 34 | $secondaries_from_primary = []; |
35 | 35 |
@@ -24,7 +24,7 @@ |
||
24 | 24 | } |
25 | 25 | |
26 | 26 | //for update form, get initial state of the entity |
27 | - if( isset($id) && $id ){ |
|
27 | + if (isset($id) && $id) { |
|
28 | 28 | |
29 | 29 | //get entity with relations for primary dependency |
30 | 30 | $entity_dependencies = $entity_model->with($primary_dependency['entity']) |