Completed
Push — master ( 05e8ff...9e3da7 )
by Mike
04:57
created
src/database/migrations/2018_02_25_003452_create_translations_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('translations', function (Blueprint $table) {
16
+        Schema::create('translations', function(Blueprint $table) {
17 17
             $table->string('key');
18 18
             $table->text('value');
19 19
             $table->bigInteger('translatable_id')->unsigned();
Please login to merge, or discard this patch.
src/Translation.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
     {
23 23
         $this->deleteTranslation($attributes['translatable_type'], $attributes['translatable_id']);
24 24
         
25
-        collect($attributes['translatable'])->each(function ($data, $locale) use ($attributes) {
26
-            collect($data)->each(function ($value, $key) use ($attributes, $locale) {
25
+        collect($attributes['translatable'])->each(function($data, $locale) use ($attributes) {
26
+            collect($data)->each(function($value, $key) use ($attributes, $locale) {
27 27
                 self::insert([
28 28
                     'key'               => $key,
29 29
                     'value'             => $value ?? '',
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
     public function scopeOrderTranslationByKey($query, $key = 'name', $order = 'asc')
59 59
     {
60 60
         return $query->select(\DB::raw('
61
-			IF(translations.`key` = "' . $key . '", translations.value, "") as ' . $key . '
61
+			IF(translations.`key` = "' . $key.'", translations.value, "") as '.$key.'
62 62
 		'))->where(
63 63
             'translations.locale', '=', app()->getLocale()
64 64
         )->orderBy(
65
-            \DB::raw($key . ' ' . $order)
65
+            \DB::raw($key.' '.$order)
66 66
         )->groupBy('translations.translatable_id');
67 67
     }
68 68
     
Please login to merge, or discard this patch.
src/TranslatableServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,17 +15,17 @@
 block discarded – undo
15 15
 {
16 16
     public function boot()
17 17
     {
18
-        $this->loadMigrationsFrom(__DIR__ . '/database/migrations/');
18
+        $this->loadMigrationsFrom(__DIR__.'/database/migrations/');
19 19
         
20 20
         $this->publishes([
21
-            __DIR__ . '/database/migrations/' => database_path('migrations')
21
+            __DIR__.'/database/migrations/' => database_path('migrations')
22 22
         ], 'migrations');
23 23
         
24 24
         $this->publishes([
25
-            __DIR__ . '/config/languages.php' => config_path('languages.php'),
25
+            __DIR__.'/config/languages.php' => config_path('languages.php'),
26 26
         ], 'config');
27 27
         
28
-        Collection::macro('for', function ($field, $code) {
28
+        Collection::macro('for', function($field, $code) {
29 29
             return $this->where('key', $field)->where('locale', $code)->pluck('value')->first() ?? null;
30 30
         });
31 31
     }
Please login to merge, or discard this patch.
src/Translatable.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -18,18 +18,18 @@  discard block
 block discarded – undo
18 18
     {
19 19
         static::addGlobalScope(new TranslatableScope);
20 20
         
21
-        static::saving(function ($model) {
21
+        static::saving(function($model) {
22 22
             $model->translatable = collect($model->attributes)->only(static::$transtableFieldName)->toArray();
23 23
             $model->attributes = collect($model->attributes)->except(static::$transtableFieldName)->toArray();
24 24
         });
25 25
         
26
-        static::saved(function ($model) {
26
+        static::saved(function($model) {
27 27
             if ($model->translatable) {
28 28
                 (new self)->saveTranslation($model);
29 29
             }
30 30
         });
31 31
         
32
-        static::deleted(function ($model) {
32
+        static::deleted(function($model) {
33 33
             if ((new $model)->has('translations')) {
34 34
                 $model->translations()->delete();
35 35
             }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         }
67 67
         
68 68
         // Build the sub select
69
-        $fields->each(function ($key) use ($query) {
69
+        $fields->each(function($key) use ($query) {
70 70
             $this->subSelectTranslation($query, $key);
71 71
         });
72 72
         
@@ -76,13 +76,13 @@  discard block
 block discarded – undo
76 76
     protected function subSelectTranslation($query, $key): void
77 77
     {
78 78
         $query->addSelect([
79
-            $key => function ($query) use ($key) {
80
-                $query->select(Translation::getTableName() . '.value')
79
+            $key => function($query) use ($key) {
80
+                $query->select(Translation::getTableName().'.value')
81 81
                     ->from(Translation::getTableName())
82
-                    ->where(Translation::getTableName() . '.translatable_type', '=', \get_class($this))
83
-                    ->where(Translation::getTableName() . '.locale', '=', $this->locale)
84
-                    ->where(Translation::getTableName() . '.key', '=', $key)
85
-                    ->where(Translation::getTableName() . '.translatable_id', '=', \DB::raw($this->getTable() . '.' . $this->primaryKey));
82
+                    ->where(Translation::getTableName().'.translatable_type', '=', \get_class($this))
83
+                    ->where(Translation::getTableName().'.locale', '=', $this->locale)
84
+                    ->where(Translation::getTableName().'.key', '=', $key)
85
+                    ->where(Translation::getTableName().'.translatable_id', '=', \DB::raw($this->getTable().'.'.$this->primaryKey));
86 86
             }
87 87
         ]);
88 88
 
@@ -105,10 +105,10 @@  discard block
 block discarded – undo
105 105
     {
106 106
         $table = Translation::getTableName();
107 107
         
108
-        return DB::table($table)->select($table . '.key')
109
-            ->where($table . '.translatable_type', \get_class($this))
110
-            ->where($table . '.locale', $this->locale)
111
-            ->groupBy($table . '.key')
108
+        return DB::table($table)->select($table.'.key')
109
+            ->where($table.'.translatable_type', \get_class($this))
110
+            ->where($table.'.locale', $this->locale)
111
+            ->groupBy($table.'.key')
112 112
             ->pluck('key');
113 113
     }
114 114
     
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
     
124 124
     protected function fullTextWildcards($term)
125 125
     {
126
-        return collect(explode(' ', str_replace(['-', '+', '<', '>', '@', '(', ')', '~'], '', $term)))->map(function ($word, $key) {
127
-            return strlen($word) >= 3 ? '+' . $word . '*' : '';
126
+        return collect(explode(' ', str_replace(['-', '+', '<', '>', '@', '(', ')', '~'], '', $term)))->map(function($word, $key) {
127
+            return strlen($word) >= 3 ? '+'.$word.'*' : '';
128 128
         })->implode(' ');
129 129
     }
130 130
     
@@ -132,10 +132,10 @@  discard block
 block discarded – undo
132 132
     {
133 133
         return $query->join('translations', 'translations.translatable_id', '=', 'products.id')
134 134
             ->addSelect([
135
-                'relevance' => function ($query) use ($term) {
136
-                    $query->selectRaw("MATCH (`translations`.`value`) AGAINST ('" . $this->fullTextWildcards($term) . "' IN BOOLEAN MODE)")
135
+                'relevance' => function($query) use ($term) {
136
+                    $query->selectRaw("MATCH (`translations`.`value`) AGAINST ('".$this->fullTextWildcards($term)."' IN BOOLEAN MODE)")
137 137
                         ->from('translations')
138
-                        ->where('translations.translatable_id', DB::raw($this->getTable() . '.' . $this->primaryKey))
138
+                        ->where('translations.translatable_id', DB::raw($this->getTable().'.'.$this->primaryKey))
139 139
                         ->limit(1);
140 140
                 }
141 141
             ])
Please login to merge, or discard this patch.