We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | <!-- elFinder JS (REQUIRED) --> |
15 | 15 | <script src="<?= asset($dir.'/js/elfinder.min.js') ?>"></script> |
16 | 16 | |
17 | - <?php if($locale){ ?> |
|
17 | + <?php if ($locale) { ?> |
|
18 | 18 | <!-- elFinder translation (OPTIONAL) --> |
19 | 19 | <script src="<?= asset($dir."/js/i18n/elfinder.$locale.js") ?>"></script> |
20 | 20 | <?php } ?> |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $().ready(function() { |
27 | 27 | $('#elfinder').elfinder({ |
28 | 28 | // set your elFinder options here |
29 | - <?php if($locale){ ?> |
|
29 | + <?php if ($locale) { ?> |
|
30 | 30 | lang: '<?= $locale ?>', // locale |
31 | 31 | <?php } ?> |
32 | 32 | customData: { |
@@ -68,10 +68,10 @@ |
||
68 | 68 | <ol class="sortable mt-0"> |
69 | 69 | <?php |
70 | 70 | $all_entries = collect($entries->all())->sortBy('lft')->keyBy($crud->getModel()->getKeyName()); |
71 | - $root_entries = $all_entries->filter(function ($item) { |
|
71 | + $root_entries = $all_entries->filter(function($item) { |
|
72 | 72 | return $item->parent_id == 0; |
73 | 73 | }); |
74 | - foreach ($root_entries as $key => $entry){ |
|
74 | + foreach ($root_entries as $key => $entry) { |
|
75 | 75 | $root_entries[$key] = tree_element($entry, $key, $all_entries, $crud); |
76 | 76 | } |
77 | 77 | ?> |
@@ -24,7 +24,6 @@ |
||
24 | 24 | /** |
25 | 25 | * Create duplicates of multiple entries in the datatabase. |
26 | 26 | * |
27 | - * @param int $id |
|
28 | 27 | * |
29 | 28 | * @return Response |
30 | 29 | */ |
@@ -26,7 +26,7 @@ |
||
26 | 26 | * |
27 | 27 | * @param int $id |
28 | 28 | * |
29 | - * @return Response |
|
29 | + * @return string |
|
30 | 30 | */ |
31 | 31 | public function clone($id) |
32 | 32 | { |
@@ -9,7 +9,6 @@ |
||
9 | 9 | /** |
10 | 10 | * Define which routes are needed for this operation. |
11 | 11 | * |
12 | - * @param string $name Name of the current entity (singular). Used as first URL segment. |
|
13 | 12 | * @param string $routeName Prefix of the route name. |
14 | 13 | * @param string $controller Name of the current CrudController. |
15 | 14 | */ |
@@ -9,7 +9,6 @@ |
||
9 | 9 | /** |
10 | 10 | * Define which routes are needed for this operation. |
11 | 11 | * |
12 | - * @param string $name Name of the current entity (singular). Used as first URL segment. |
|
13 | 12 | * @param string $routeName Prefix of the route name. |
14 | 13 | * @param string $controller Name of the current CrudController. |
15 | 14 | */ |
@@ -88,13 +88,13 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function register() |
90 | 90 | { |
91 | - $this->app->bind('CRUD', function ($app) { |
|
91 | + $this->app->bind('CRUD', function($app) { |
|
92 | 92 | return new CRUD($app); |
93 | 93 | }); |
94 | 94 | |
95 | 95 | // load a macro for Route, |
96 | 96 | // for developers to be able to load all routes for a CRUD resource in one line |
97 | - if (! Route::hasMacro('crud')) { |
|
97 | + if (!Route::hasMacro('crud')) { |
|
98 | 98 | $this->addRouteMacro(); |
99 | 99 | } |
100 | 100 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $this->commands($this->commands); |
106 | 106 | |
107 | 107 | // map the elfinder prefix |
108 | - if (! \Config::get('elfinder.route.prefix')) { |
|
108 | + if (!\Config::get('elfinder.route.prefix')) { |
|
109 | 109 | \Config::set('elfinder.route.prefix', \Config::get('backpack.base.route_prefix').'/elfinder'); |
110 | 110 | } |
111 | 111 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | private function addRouteMacro() |
120 | 120 | { |
121 | - Route::macro('crud', function ($name, $controller) { |
|
121 | + Route::macro('crud', function($name, $controller) { |
|
122 | 122 | // put together the route name prefix, |
123 | 123 | // as passed to the Route::group() statements |
124 | 124 | $routeName = ''; |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | { |
165 | 165 | $crudPubPath = public_path('vendor/backpack/crud'); |
166 | 166 | |
167 | - if (! is_dir($crudPubPath)) { |
|
167 | + if (!is_dir($crudPubPath)) { |
|
168 | 168 | return true; |
169 | 169 | } |
170 | 170 |