@@ -11,20 +11,20 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function getFolders() |
| 13 | 13 | { |
| 14 | - $folder_types = array_filter(['user', 'share'], function ($type) { |
|
| 14 | + $folder_types = array_filter([ 'user', 'share' ], function($type) { |
|
| 15 | 15 | return $this->helper->allowFolderType($type); |
| 16 | 16 | }); |
| 17 | 17 | |
| 18 | 18 | return view('laravel-filemanager::tree') |
| 19 | 19 | ->with([ |
| 20 | - 'root_folders' => array_map(function ($type) use ($folder_types) { |
|
| 20 | + 'root_folders' => array_map(function($type) use ($folder_types) { |
|
| 21 | 21 | $path = $this->lfm->dir($this->helper->getRootFolder($type)); |
| 22 | 22 | |
| 23 | 23 | return (object) [ |
| 24 | 24 | 'name' => __('laravel-filemanager::lfm.title-' . $type), |
| 25 | 25 | 'url' => $path->path('working_dir'), |
| 26 | 26 | 'children' => $path->folders(), |
| 27 | - 'has_next' => ! ($type == end($folder_types)), |
|
| 27 | + 'has_next' => !($type == end($folder_types)), |
|
| 28 | 28 | ]; |
| 29 | 29 | }, $folder_types), |
| 30 | 30 | ]); |
@@ -46,17 +46,17 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public function getErrors() |
| 48 | 48 | { |
| 49 | - $arr_errors = []; |
|
| 49 | + $arr_errors = [ ]; |
|
| 50 | 50 | |
| 51 | - if (! extension_loaded('gd') && ! extension_loaded('imagick')) { |
|
| 51 | + if (!extension_loaded('gd') && !extension_loaded('imagick')) { |
|
| 52 | 52 | array_push($arr_errors, __('laravel-filemanager::lfm.message-extension_not_found')); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - if (! extension_loaded('exif')) { |
|
| 55 | + if (!extension_loaded('exif')) { |
|
| 56 | 56 | array_push($arr_errors, 'EXIF extension not found.'); |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - if (! extension_loaded('fileinfo')) { |
|
| 59 | + if (!extension_loaded('fileinfo')) { |
|
| 60 | 60 | array_push($arr_errors, 'Fileinfo extension not found.'); |
| 61 | 61 | } |
| 62 | 62 | |
@@ -64,14 +64,14 @@ discard block |
||
| 64 | 64 | . $this->helper->currentLfmType() |
| 65 | 65 | . '.valid_mime'; |
| 66 | 66 | |
| 67 | - if (! is_array(config($mine_config_key))) { |
|
| 67 | + if (!is_array(config($mine_config_key))) { |
|
| 68 | 68 | array_push($arr_errors, 'Config : ' . $mine_config_key . ' is not a valid array.'); |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | return $arr_errors; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - public function error($error_type, $variables = []) |
|
| 74 | + public function error($error_type, $variables = [ ]) |
|
| 75 | 75 | { |
| 76 | 76 | return $this->helper->error($error_type, $variables); |
| 77 | 77 | } |
@@ -17,28 +17,28 @@ discard block |
||
| 17 | 17 | */ |
| 18 | 18 | public function boot() |
| 19 | 19 | { |
| 20 | - $this->loadTranslationsFrom(__DIR__.'/lang', 'laravel-filemanager'); |
|
| 20 | + $this->loadTranslationsFrom(__DIR__ . '/lang', 'laravel-filemanager'); |
|
| 21 | 21 | |
| 22 | - $this->loadViewsFrom(__DIR__.'/views', 'laravel-filemanager'); |
|
| 22 | + $this->loadViewsFrom(__DIR__ . '/views', 'laravel-filemanager'); |
|
| 23 | 23 | |
| 24 | 24 | $this->publishes([ |
| 25 | 25 | __DIR__ . '/config/lfm.php' => base_path('config/lfm.php'), |
| 26 | 26 | ], 'lfm_config'); |
| 27 | 27 | |
| 28 | 28 | $this->publishes([ |
| 29 | - __DIR__.'/../public' => public_path('vendor/laravel-filemanager'), |
|
| 29 | + __DIR__ . '/../public' => public_path('vendor/laravel-filemanager'), |
|
| 30 | 30 | ], 'lfm_public'); |
| 31 | 31 | |
| 32 | 32 | $this->publishes([ |
| 33 | - __DIR__.'/views' => base_path('resources/views/vendor/laravel-filemanager'), |
|
| 33 | + __DIR__ . '/views' => base_path('resources/views/vendor/laravel-filemanager'), |
|
| 34 | 34 | ], 'lfm_view'); |
| 35 | 35 | |
| 36 | 36 | $this->publishes([ |
| 37 | - __DIR__.'/Handlers/LfmConfigHandler.php' => base_path('app/Handlers/LfmConfigHandler.php'), |
|
| 37 | + __DIR__ . '/Handlers/LfmConfigHandler.php' => base_path('app/Handlers/LfmConfigHandler.php'), |
|
| 38 | 38 | ], 'lfm_handler'); |
| 39 | 39 | |
| 40 | 40 | if (config('lfm.use_package_routes')) { |
| 41 | - Route::group(['prefix' => 'laravel-filemanager', 'middleware' => ['web', 'auth']], function () { |
|
| 41 | + Route::group([ 'prefix' => 'laravel-filemanager', 'middleware' => [ 'web', 'auth' ] ], function() { |
|
| 42 | 42 | \Xuandung38\LaravelFilemanager\Lfm::routes(); |
| 43 | 43 | }); |
| 44 | 44 | } |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function register() |
| 53 | 53 | { |
| 54 | - $this->app->singleton('laravel-filemanager', function () { |
|
| 54 | + $this->app->singleton('laravel-filemanager', function() { |
|
| 55 | 55 | return true; |
| 56 | 56 | }); |
| 57 | 57 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | $lfm_type = 'file'; |
| 76 | 76 | |
| 77 | 77 | $request_type = lcfirst(Str::singular($this->input('type') ?: '')); |
| 78 | - $available_types = array_keys($this->config->get('lfm.folder_categories') ?: []); |
|
| 78 | + $available_types = array_keys($this->config->get('lfm.folder_categories') ?: [ ]); |
|
| 79 | 79 | |
| 80 | 80 | if (in_array($request_type, $available_types)) { |
| 81 | 81 | $lfm_type = $request_type; |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | $view_type = 'grid'; |
| 93 | 93 | $target_display_type = $this->input('show_list') ?: $startup_view; |
| 94 | 94 | |
| 95 | - if (in_array($target_display_type, ['list', 'grid'])) { |
|
| 95 | + if (in_array($target_display_type, [ 'list', 'grid' ])) { |
|
| 96 | 96 | $view_type = $target_display_type; |
| 97 | 97 | } |
| 98 | 98 | |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | */ |
| 177 | 177 | public function allowShareFolder() |
| 178 | 178 | { |
| 179 | - if (! $this->allowMultiUser()) { |
|
| 179 | + if (!$this->allowMultiUser()) { |
|
| 180 | 180 | return true; |
| 181 | 181 | } |
| 182 | 182 | |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | * @param mixed $variables Variables the message needs. |
| 231 | 231 | * @return string |
| 232 | 232 | */ |
| 233 | - public function error($error_type, $variables = []) |
|
| 233 | + public function error($error_type, $variables = [ ]) |
|
| 234 | 234 | { |
| 235 | 235 | throw new \Exception(__(self::PACKAGE_NAME . '::lfm.error-' . $error_type, $variables)); |
| 236 | 236 | } |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | $as = 'xuandung38.lfm.'; |
| 247 | 247 | $namespace = '\\Xuandung38\\LaravelFilemanager\\Controllers\\'; |
| 248 | 248 | |
| 249 | - Route::group(compact('middleware', 'as', 'namespace'), function () { |
|
| 249 | + Route::group(compact('middleware', 'as', 'namespace'), function() { |
|
| 250 | 250 | |
| 251 | 251 | // display main layout |
| 252 | 252 | Route::get('/', [ |