Passed
Pull Request — master (#2189)
by Rico
07:03
created
app/Http/Controllers/Admin/LocationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
             $breadcrumbs[] = I18N::translate('Add');
103 103
         } else {
104 104
             $breadcrumbs[] = I18N::translate('Edit');
105
-            $title         .= ' — ' . I18N::translate('Edit');
105
+            $title .= ' — ' . I18N::translate('Edit');
106 106
         }
107 107
 
108 108
         return $this->viewResponse('admin/location-edit', [
Please login to merge, or discard this patch.
app/Services/ModuleService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
     public function findByName(string $module_name): ?ModuleInterface
505 505
     {
506 506
         return $this->all()
507
-            ->filter(function (ModuleInterface $module) use ($module_name): bool {
507
+            ->filter(function (ModuleInterface $module) use ($module_name) : bool {
508 508
                 return $module->isEnabled() && $module->name() === $module_name;
509 509
             })
510 510
             ->first();
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
     public function findByClass(string $class_name): ?ModuleInterface
521 521
     {
522 522
         return $this->all()
523
-            ->filter(function (ModuleInterface $module) use ($class_name): bool {
523
+            ->filter(function (ModuleInterface $module) use ($class_name) : bool {
524 524
                 return $module->isEnabled() && $module instanceof $class_name;
525 525
             })
526 526
             ->first();
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/ImportThumbnailsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -560,7 +560,7 @@
 block discarded – undo
560 560
         $data = array_map(function (string $thumbnail): array {
561 561
             $original = $this->findOriginalFileFromThumbnail($thumbnail);
562 562
 
563
-            $original_url  = route('unused-media-thumbnail', [
563
+            $original_url = route('unused-media-thumbnail', [
564 564
                 'folder' => dirname($original),
565 565
                 'file'   => basename($original),
566 566
                 'w'      => 100,
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/MediaController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
         $length = (int) $request->get('length');
121 121
 
122 122
         // Files within this folder
123
-        $media_folder  = $request->get('media_folder', '');
123
+        $media_folder = $request->get('media_folder', '');
124 124
 
125 125
         // subfolders within $media_path
126 126
         $subfolders = $request->get('subfolders', ''); // include|exclude
Please login to merge, or discard this patch.
app/Http/Controllers/ReportEngineController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                     $input['control'] = FunctionsEdit::formControlSource($tree, $source, $attributes + ['required' => 'true']);
134 134
                     break;
135 135
                 case 'DATE':
136
-                    $attributes       += [
136
+                    $attributes += [
137 137
                         'type'  => 'text',
138 138
                         'value' => $input['default'],
139 139
                         'dir'   => 'ltr',
@@ -148,14 +148,14 @@  discard block
 block discarded – undo
148 148
                 default:
149 149
                     switch ($input['type']) {
150 150
                         case 'text':
151
-                            $attributes       += [
151
+                            $attributes += [
152 152
                                 'type'  => 'text',
153 153
                                 'value' => $input['default'],
154 154
                             ];
155 155
                             $input['control'] = '<input ' . Html::attributes($attributes) . '>';
156 156
                             break;
157 157
                         case 'checkbox':
158
-                            $attributes       += [
158
+                            $attributes += [
159 159
                                 'type'    => 'checkbox',
160 160
                                 'checked' => (bool) $input['default'],
161 161
                             ];
Please login to merge, or discard this patch.