Passed
Push — 1.2 ( ac7648...d64a15 )
by Quentin
05:40
created
src/Repositories/Behaviors/HandleTranslations.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,12 +23,12 @@  discard block
 block discarded – undo
23 23
 
24 24
             $submittedLanguages = Collection::make($fields['languages'] ?? []);
25 25
 
26
-            $atLeastOneLanguageIsPublished = $submittedLanguages->contains(function ($language) {
26
+            $atLeastOneLanguageIsPublished = $submittedLanguages->contains(function($language) {
27 27
                 return $language['published'];
28 28
             });
29 29
 
30 30
             foreach ($locales as $index => $locale) {
31
-                $submittedLanguage = Arr::first($submittedLanguages->filter(function ($lang) use ($locale) {
31
+                $submittedLanguage = Arr::first($submittedLanguages->filter(function($lang) use ($locale) {
32 32
                     return $lang['value'] == $locale;
33 33
                 }));
34 34
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
                 $fields[$locale] = [
40 40
                     'active' => $activeField,
41
-                ] + $attributes->mapWithKeys(function ($attribute) use (&$fields, $locale, $localesCount, $index) {
41
+                ] + $attributes->mapWithKeys(function($attribute) use (&$fields, $locale, $localesCount, $index) {
42 42
                     $attributeValue = $fields[$attribute] ?? null;
43 43
 
44 44
                     // if we are at the last locale,
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     {
80 80
         if (property_exists($this->model, 'translatedAttributes')) {
81 81
             $attributes = $this->model->translatedAttributes;
82
-            $query->whereHas('translations', function ($q) use ($scopes, $attributes) {
82
+            $query->whereHas('translations', function($q) use ($scopes, $attributes) {
83 83
                 foreach ($attributes as $attribute) {
84 84
                     if (isset($scopes[$attribute]) && is_string($scopes[$attribute])) {
85 85
                         $q->where($attribute, 'like', '%' . $scopes[$attribute] . '%');
Please login to merge, or discard this patch.
src/Repositories/Behaviors/HandleMedias.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         $mediasCollection = Collection::make();
24 24
         $mediasFromFields = $this->getMedias($fields);
25 25
 
26
-        $mediasFromFields->each(function ($media) use ($object, $mediasCollection) {
26
+        $mediasFromFields->each(function($media) use ($object, $mediasCollection) {
27 27
             $newMedia = Media::withTrashed()->find(is_array($media['id']) ? Arr::first($media['id']) : $media['id']);
28 28
             $pivot = $newMedia->newPivot($object, Arr::except($media, ['id']), 'mediables', true);
29 29
             $newMedia->setRelation('pivot', $pivot);
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
         $object->medias()->sync([]);
50 50
 
51
-        $this->getMedias($fields)->each(function ($media) use ($object) {
51
+        $this->getMedias($fields)->each(function($media) use ($object) {
52 52
             $object->medias()->attach($media['id'], Arr::except($media, ['id']));
53 53
         });
54 54
     }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
                 if (in_array($role, array_keys($this->model->mediasParams ?? []))
78 78
                     || in_array($role, array_keys(config('twill.block_editor.crops', [])))
79 79
                     || in_array($role, array_keys(config('twill.settings.crops', [])))) {
80
-                    Collection::make($mediasForRole)->each(function ($media) use (&$medias, $role, $locale) {
80
+                    Collection::make($mediasForRole)->each(function($media) use (&$medias, $role, $locale) {
81 81
                         $customMetadatas = $media['metadatas']['custom'] ?? [];
82 82
                         if (isset($media['crops']) && !empty($media['crops'])) {
83 83
                             foreach ($media['crops'] as $cropName => $cropData) {
Please login to merge, or discard this patch.
src/Repositories/Behaviors/HandleSlugs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
         }
79 79
 
80 80
         if (!$item && config('translatable.use_property_fallback', false)) {
81
-            $item = (clone $query)->orWhere(function ($query) {
81
+            $item = (clone $query)->orWhere(function($query) {
82 82
                 return $query->withActiveTranslations(config('translatable.fallback_locale'));
83 83
             })->forFallbackLocaleSlug($slug)->first();
84 84
 
Please login to merge, or discard this patch.
src/Repositories/Behaviors/HandleFiles.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         $filesCollection = Collection::make();
24 24
         $filesFromFields = $this->getFiles($fields);
25 25
 
26
-        $filesFromFields->each(function ($file) use ($object, $filesCollection) {
26
+        $filesFromFields->each(function($file) use ($object, $filesCollection) {
27 27
             $newFile = File::withTrashed()->find($file['id']);
28 28
             $pivot = $newFile->newPivot($object, Arr::except($file, ['id']), 'fileables', true);
29 29
             $newFile->setRelation('pivot', $pivot);
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
         $object->files()->sync([]);
50 50
 
51
-        $this->getFiles($fields)->each(function ($file) use ($object) {
51
+        $this->getFiles($fields)->each(function($file) use ($object) {
52 52
             $object->files()->attach($file['id'], Arr::except($file, ['id']));
53 53
         });
54 54
     }
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
                 if (in_array($role, $this->model->filesParams ?? [])
75 75
                     || in_array($role, config('twill.block_editor.files', []))) {
76 76
 
77
-                    Collection::make($filesForRole)->each(function ($file) use (&$files, $role, $locale) {
77
+                    Collection::make($filesForRole)->each(function($file) use (&$files, $role, $locale) {
78 78
                         $files->push([
79 79
                             'id' => $file['id'],
80 80
                             'role' => $role,
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         if ($object->has('files')) {
100 100
             foreach ($object->files->groupBy('pivot.role') as $role => $filesByRole) {
101 101
                 foreach ($filesByRole->groupBy('pivot.locale') as $locale => $filesByLocale) {
102
-                    $fields['files'][$locale][$role] = $filesByLocale->map(function ($file) {
102
+                    $fields['files'][$locale][$role] = $filesByLocale->map(function($file) {
103 103
                         return $file->toCmsArray();
104 104
                     });
105 105
                 }
Please login to merge, or discard this patch.
migrations/change_locale_column_in_twill_fileables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
     public function up()
9 9
     {
10 10
         if (Schema::hasTable('fileables') && Schema::hasColumn('fileables', 'locale')) {
11
-            Schema::table('fileables', function (Blueprint $table) {
11
+            Schema::table('fileables', function(Blueprint $table) {
12 12
                 $table->string('locale', 7)->change();
13 13
             });
14 14
         }
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     public function down()
18 18
     {
19 19
         if (Schema::hasTable('fileables') && Schema::hasColumn('fileables', 'locale')) {
20
-            Schema::table('fileables', function (Blueprint $table) {
20
+            Schema::table('fileables', function(Blueprint $table) {
21 21
                 $table->string('locale', 6)->change();
22 22
             });
23 23
         }
Please login to merge, or discard this patch.
migrations/create_related_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('related', function (Blueprint $table) {
16
+        Schema::create('related', function(Blueprint $table) {
17 17
             $table->integer('subject_id')->nullable()->unsigned();
18 18
             $table->string('subject_type', 255);
19 19
             $table->integer('related_id')->nullable()->unsigned();
Please login to merge, or discard this patch.
migrations/create_twill_users_tables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         $twillUsersTable = config('twill.users_table', 'twill_users');
17 17
 
18 18
         if (!Schema::hasTable($twillUsersTable)) {
19
-            Schema::create($twillUsersTable, function (Blueprint $table) {
19
+            Schema::create($twillUsersTable, function(Blueprint $table) {
20 20
                 createDefaultTableFields($table);
21 21
                 $table->string('name');
22 22
                 $table->string('email')->unique();
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         $twillPasswordResetsTable = config('twill.password_resets_table', 'twill_password_resets');
32 32
 
33 33
         if (!Schema::hasTable($twillPasswordResetsTable)) {
34
-            Schema::create($twillPasswordResetsTable, function (Blueprint $table) {
34
+            Schema::create($twillPasswordResetsTable, function(Blueprint $table) {
35 35
                 $table->string('email')->index();
36 36
                 $table->string('token')->index();
37 37
                 $table->timestamp('created_at')->nullable();
Please login to merge, or discard this patch.
migrations/create_settings_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('settings', function (Blueprint $table) {
16
+        Schema::create('settings', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->timestamps();
19 19
             $table->softDeletes();
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
             $table->string('section')->nullable()->index();
22 22
         });
23 23
 
24
-        Schema::create('setting_translations', function (Blueprint $table) {
24
+        Schema::create('setting_translations', function(Blueprint $table) {
25 25
             createDefaultTranslationsTableFields($table, 'setting');
26 26
             $table->text('value')->nullable();
27 27
         });
Please login to merge, or discard this patch.
migrations/add_locale_column_to_twill_mediables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
     public function up()
9 9
     {
10 10
         if (Schema::hasTable('mediables') && !Schema::hasColumn('mediables', 'locale')) {
11
-            Schema::table('mediables', function (Blueprint $table) {
11
+            Schema::table('mediables', function(Blueprint $table) {
12 12
                 $table->string('locale', 7)->default($this->getCurrentLocale())->index();
13 13
             });
14 14
         }
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     public function down()
18 18
     {
19 19
         if (Schema::hasTable('mediables') && Schema::hasColumn('mediables', 'locale')) {
20
-            Schema::table('mediables', function (Blueprint $table) {
20
+            Schema::table('mediables', function(Blueprint $table) {
21 21
                 $table->dropIndex('mediables_locale_index');
22 22
                 $table->dropColumn('locale');
23 23
             });
Please login to merge, or discard this patch.