Completed
Push — fix/56 ( b255ea...a550dc )
by Tyler
19:24
created
src/Components/Notifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         if (is_callable($cb)) {
42 42
             return $cb;
43 43
         } else {
44
-            return function () use ($cb) { return $cb; };
44
+            return function() use ($cb) { return $cb; };
45 45
         }
46 46
     }
47 47
 
Please login to merge, or discard this patch.
src/LERNServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
         $this->handleDeprecatedConfigValues();
14 14
 
15
-        $this->app->singleton('lern', function () {
15
+        $this->app->singleton('lern', function() {
16 16
             return new LERN;
17 17
         });
18 18
     }
Please login to merge, or discard this patch.
src/Components/Recorder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
             $class = !empty($class) ? $class : ExceptionModel::class;
62 62
 
63 63
             $model = new $class();
64
-            foreach($opts as $key => $value) {
64
+            foreach ($opts as $key => $value) {
65 65
                 $model->{$key} = $value;
66 66
             }
67 67
 
Please login to merge, or discard this patch.