Completed
Branch dev (af9673)
by Zach
03:11
created
src/Translator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
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()) {
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.