Passed
Push — master ( 056bfa...778836 )
by Mr
03:45 queued 01:50
created
src/Laravel/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,17 +29,17 @@
 block discarded – undo
29 29
     {
30 30
         $app = $this->app;
31 31
 
32
-        $app->singleton('easy-rsa.factory', static function () {
32
+        $app->singleton('easy-rsa.factory', static function() {
33 33
             return new Factory();
34 34
         });
35 35
 
36
-        $app->singleton('easy-rsa', static function ($app) {
36
+        $app->singleton('easy-rsa', static function($app) {
37 37
             return new Manager($app, $app['easy-rsa.factory']);
38 38
         });
39 39
 
40 40
         $app->alias('easy-rsa', Manager::class);
41 41
 
42
-        $app->singleton(Worker::class, static function (Container $app) {
42
+        $app->singleton(Worker::class, static function(Container $app) {
43 43
             return $app->make('easy-rsa')->connection();
44 44
         });
45 45
     }
Please login to merge, or discard this patch.