Passed
Push — develop ( 4e6cc2...da9b52 )
by nguereza
02:55
created
src/Service/Provider/BaseServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     {
79 79
         $this->app->share(Application::class, $this->app);
80 80
         $this->app->share('app', $this->app);
81
-        $this->app->share(ConsoleApp::class, function () {
81
+        $this->app->share(ConsoleApp::class, function() {
82 82
             return new ConsoleApp('PLATINE CONSOLE', '1.0.0');
83 83
         });
84 84
         $this->app->share(ContainerInterface::class, $this->app);
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         $this->app->bind(MiddlewareResolverInterface::class, MiddlewareResolver::class);
89 89
         $this->app->bind(MaintenanceMiddleware::class);
90 90
         $this->app->bind(MaintenanceDriverInterface::class, FileMaintenanceDriver::class);
91
-        $this->app->bind(EmitterInterface::class, function (ContainerInterface $app) {
91
+        $this->app->bind(EmitterInterface::class, function(ContainerInterface $app) {
92 92
             return new ResponseEmitter(
93 93
                 $app->get(Config::class)->get('app.response_chunck_size', null)
94 94
             );
Please login to merge, or discard this patch.