@@ -118,9 +118,9 @@ discard block |
||
118 | 118 | * Load the lines into the database. |
119 | 119 | * |
120 | 120 | * @param $lines |
121 | - * @param $namespace |
|
122 | - * @param $group |
|
123 | - * @param $locale |
|
121 | + * @param null|string $namespace |
|
122 | + * @param string $group |
|
123 | + * @param string $locale |
|
124 | 124 | */ |
125 | 125 | protected function loadLines($lines, $namespace, $group, $locale) |
126 | 126 | { |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | /** |
146 | 146 | * @param $file |
147 | 147 | * |
148 | - * @return mixed |
|
148 | + * @return string |
|
149 | 149 | */ |
150 | 150 | protected function getGroup($file) |
151 | 151 | { |
@@ -66,7 +66,7 @@ |
||
66 | 66 | /** |
67 | 67 | * Process the language lines to remove the specified locale. |
68 | 68 | * |
69 | - * @param $lines |
|
69 | + * @param \Illuminate\Database\Eloquent\Model $lines |
|
70 | 70 | */ |
71 | 71 | protected function processLines($lines) |
72 | 72 | { |
@@ -16,7 +16,7 @@ |
||
16 | 16 | */ |
17 | 17 | public function up() |
18 | 18 | { |
19 | - Schema::create(config('database.translations.table'), function (Blueprint $table) { |
|
19 | + Schema::create(config('database.translations.table'), function(Blueprint $table) { |
|
20 | 20 | $table->increments('id'); |
21 | 21 | $table->string('namespace')->nullable(); |
22 | 22 | $table->string('group')->nullable(); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | $this->registerLoader(); |
49 | 49 | |
50 | - $this->app->singleton('translator', function ($app) { |
|
50 | + $this->app->singleton('translator', function($app) { |
|
51 | 51 | $loader = $app['translation.loader']; |
52 | 52 | |
53 | 53 | // When registering the translator component, we'll need to set the default |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | */ |
71 | 71 | protected function registerLoader() |
72 | 72 | { |
73 | - $this->app->singleton('translation.loader', function ($app) { |
|
73 | + $this->app->singleton('translation.loader', function($app) { |
|
74 | 74 | return new DatabaseLoader( |
75 | 75 | $app['files'], |
76 | 76 | $app['path.lang'], |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | if (!$this->cacheEnabled) { |
107 | 107 | $translations = $this->loadCombinedTranslations($locale, $group, $namespace); |
108 | 108 | } else { |
109 | - $translations = $this->cache->remember($cacheKey, 1440, function () use ($locale, $namespace, $group) { |
|
109 | + $translations = $this->cache->remember($cacheKey, 1440, function() use ($locale, $namespace, $group) { |
|
110 | 110 | return $this->loadCombinedTranslations($locale, $group, $namespace); |
111 | 111 | }); |
112 | 112 | } |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | foreach ($translations as $translation) { |
222 | 222 | $value = $translation->getTranslation('values', $locale, true); |
223 | 223 | |
224 | - if (! empty($value)) { |
|
224 | + if (!empty($value)) { |
|
225 | 225 | array_set($array, $translation->key, $value); |
226 | 226 | } |
227 | 227 | } |