Completed
Branch stable (d949c6)
by Nuno
02:30
created
Category
src/LaravelDesktopNotifierServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,13 +27,13 @@
 block discarded – undo
27 27
      */
28 28
     public function register()
29 29
     {
30
-        $this->app->singleton(Notifier::class, function ($app) {
30
+        $this->app->singleton(Notifier::class, function($app) {
31 31
             $config = $app['config']['app.notifiers'];
32 32
 
33 33
             return NotifierFactory::create(is_array($config) ? $config : []);
34 34
         });
35 35
 
36
-        $this->app->bind(Notification::class, function () {
36
+        $this->app->bind(Notification::class, function() {
37 37
             return new ConcreteNotification();
38 38
         });
39 39
     }
Please login to merge, or discard this patch.