Completed
Pull Request — experimental/3.1 (#2588)
by
unknown
87:26
created
src/Eccube/Service/ComposerProcessService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
         // Execute command
89 89
         $output = array();
90 90
         exec($command, $output);
91
-        $this->app->log(PHP_EOL . implode(PHP_EOL, $output) . PHP_EOL);
91
+        $this->app->log(PHP_EOL.implode(PHP_EOL, $output).PHP_EOL);
92 92
 
93 93
         return true;
94 94
     }
Please login to merge, or discard this patch.
src/Eccube/ServiceProvider/CompatServiceProvider.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -21,41 +21,41 @@
 block discarded – undo
21 21
 
22 22
     public function register(Container $app)
23 23
     {
24
-        $app['eccube.service.cart'] = function () use ($app) {
24
+        $app['eccube.service.cart'] = function() use ($app) {
25 25
             return $app[CartService::class];
26 26
         };
27
-        $app['eccube.service.order'] = function () use ($app) {
27
+        $app['eccube.service.order'] = function() use ($app) {
28 28
             return $app[OrderService::class];
29 29
         };
30
-        $app['eccube.service.tax_rule'] = function () use ($app) {
30
+        $app['eccube.service.tax_rule'] = function() use ($app) {
31 31
             return $app[TaxRuleService::class];
32 32
         };
33
-        $app['eccube.service.plugin'] = function () use ($app) {
33
+        $app['eccube.service.plugin'] = function() use ($app) {
34 34
             return $app[PluginService::class];
35 35
         };
36
-        $app['eccube.service.mail'] = function () use ($app) {
36
+        $app['eccube.service.mail'] = function() use ($app) {
37 37
             return $app[MailService::class];
38 38
         };
39
-        $app['eccube.helper.order'] = function ($app) {
39
+        $app['eccube.helper.order'] = function($app) {
40 40
             return $app[OrderHelper::class];
41 41
         };
42
-        $app['eccube.service.csv.export'] = function () use ($app) {
42
+        $app['eccube.service.csv.export'] = function() use ($app) {
43 43
             return $app[CsvExportService::class];
44 44
         };
45
-        $app['eccube.service.shopping'] = function () use ($app) {
45
+        $app['eccube.service.shopping'] = function() use ($app) {
46 46
             return $app[ShoppingService::class];
47 47
         };
48
-        $app['eccube.service.payment'] = function () use ($app) {
48
+        $app['eccube.service.payment'] = function() use ($app) {
49 49
             return $app[PaymentService::class];
50 50
         };
51
-        $app['eccube.service.system'] = function () use ($app) {
51
+        $app['eccube.service.system'] = function() use ($app) {
52 52
             return $app[SystemService::class];
53 53
         };
54 54
 
55 55
         // Composer service
56 56
         // Because Inject/Annotation function cannot create construct function
57 57
         // Todo: Change it to inject/annotation at the controller
58
-        $app['eccube.service.composer'] = function () use ($app) {
58
+        $app['eccube.service.composer'] = function() use ($app) {
59 59
             return new ComposerProcessService($app);
60 60
         };
61 61
     }
Please login to merge, or discard this patch.