@@ -145,7 +145,7 @@ public function setTranslations(
145145 callback: function ($ translations ) use ($ values ) {
146146 return $ translations ->merge ($ values );
147147 },
148- sort: config ()-> boolean ('translator.sort_keys ' ),
148+ sort: ( bool ) config ('translator.sort_keys ' ),
149149 );
150150 }
151151
@@ -192,7 +192,7 @@ public function translateTranslations(
192192
193193 return $ translations ->merge ($ translatedValues );
194194 },
195- sort: config ()-> boolean ('translator.sort_keys ' ),
195+ sort: ( bool ) config ('translator.sort_keys ' ),
196196 )->only ($ keys );
197197 }
198198
@@ -241,7 +241,7 @@ public function proofreadTranslations(
241241
242242 return $ translations ->merge ($ proofreadValues );
243243 },
244- sort: config ()-> boolean ('translator.sort_keys ' ),
244+ sort: ( bool ) config ('translator.sort_keys ' ),
245245 )->only ($ keys );
246246 }
247247
@@ -372,7 +372,7 @@ public function importTranslations(
372372 callback: function ($ translations ) use ($ values ) {
373373 return $ translations ->merge ($ values );
374374 },
375- sort: config ()-> boolean ('translator.sort_keys ' ),
375+ sort: ( bool ) config ('translator.sort_keys ' ),
376376 );
377377
378378 }
0 commit comments