Completed
Push — stable ( a2937d...4cd2c6 )
by Nuno
20:03 queued 18:32
created
src/LaravelDesktopNotifierServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
          */
39 39
         Command::macro(
40 40
             'notify',
41
-            function (string $text, string $body, $icon = null) {
41
+            function(string $text, string $body, $icon = null) {
42 42
                 $notifier = $this->app[Contracts\Notifier::class];
43 43
 
44 44
                 $notification = $this->app[Contracts\Notification::class]
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function register()
58 58
     {
59
-        $this->app->singleton('desktop.notifier', function ($app) {
59
+        $this->app->singleton('desktop.notifier', function($app) {
60 60
             $config = $app['config']['app.notifiers'];
61 61
 
62 62
             $notifier = NotifierFactory::create(is_array($config) ? $config : []);
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
         $this->app->alias('desktop.notifier', NotifierContract::class);
68 68
 
69
-        $this->app->bind('desktop.notification', function () {
69
+        $this->app->bind('desktop.notification', function() {
70 70
             return new Notification();
71 71
         });
72 72
 
Please login to merge, or discard this patch.