Completed
Push — version-4 ( ddf616...f17933 )
by Tyler
04:15
created
src/Components/Notifier.php 2 patches
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.
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace Tylercd100\LERN\Components;
4 4
 
5
-use Auth;
6
-use Exception;
7
-use Illuminate\Support\Facades\Input;
8
-use Monolog\Handler\HandlerInterface;
9
-use Monolog\Logger;
10
-use Request;
11
-use Tylercd100\LERN\Exceptions\NotifierFailedException;
12
-use Tylercd100\Notify\Drivers\FromConfig as Notify;
5
+use Auth;
6
+use Exception;
7
+use Illuminate\Support\Facades\Input;
8
+use Monolog\Handler\HandlerInterface;
9
+use Monolog\Logger;
10
+use Request;
11
+use Tylercd100\LERN\Exceptions\NotifierFailedException;
12
+use Tylercd100\Notify\Drivers\FromConfig as Notify;
13 13
 use View;
14 14
 
15 15
 class Notifier extends Component
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.