Completed
Push — stable ( ba1838...bafb54 )
by Nuno
09:32
created
src/LaravelDesktopNotifierServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function register()
32 32
     {
33
-        $this->app->singleton(NotifierContract::class, function ($app) {
33
+        $this->app->singleton(NotifierContract::class, function($app) {
34 34
             $config = $app['config']['app.notifiers'];
35 35
 
36 36
             $notifier = NotifierFactory::create(is_array($config) ? $config : []);
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
             return new Notifier($notifier);
39 39
         });
40 40
 
41
-        $this->app->bind(NotificationContract::class, function () {
41
+        $this->app->bind(NotificationContract::class, function() {
42 42
             return new Notification();
43 43
         });
44 44
     }
Please login to merge, or discard this patch.