@@ -23,7 +23,7 @@ |
||
| 23 | 23 | $locale = null |
| 24 | 24 | ) { |
| 25 | 25 | return $bundle->getValues() |
| 26 | - ->mapWithKeys(function (BundleItem $bundleItem) use ($parameters, $locale) { |
|
| 26 | + ->mapWithKeys(function(BundleItem $bundleItem) use ($parameters, $locale) { |
|
| 27 | 27 | $bundleItem->setParameters($parameters); |
| 28 | 28 | |
| 29 | 29 | if ($choice = $bundleItem->hasChoice()) { |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | */ |
| 18 | 18 | public function register() |
| 19 | 19 | { |
| 20 | - $this->app->singleton(LangBundler::class, function () { |
|
| 20 | + $this->app->singleton(LangBundler::class, function() { |
|
| 21 | 21 | return new LangBundler( |
| 22 | 22 | new BundleMap(), |
| 23 | 23 | new Translator() |
@@ -44,15 +44,15 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | protected function registerCommands() |
| 46 | 46 | { |
| 47 | - $this->app->singleton('command.langb.start', function ($app) { |
|
| 47 | + $this->app->singleton('command.langb.start', function($app) { |
|
| 48 | 48 | return $app[MakeBundlesFolder::class]; |
| 49 | 49 | }); |
| 50 | 50 | |
| 51 | - $this->app->singleton('command.langb.new', function ($app) { |
|
| 51 | + $this->app->singleton('command.langb.new', function($app) { |
|
| 52 | 52 | return $app[MakeNewBundleFile::class]; |
| 53 | 53 | }); |
| 54 | 54 | |
| 55 | - $this->app->singleton('command.langb.mod', function ($app) { |
|
| 55 | + $this->app->singleton('command.langb.mod', function($app) { |
|
| 56 | 56 | return $app[MakeBundleMod::class]; |
| 57 | 57 | }); |
| 58 | 58 | |