Completed
Push — master ( 057c20...1dc5ea )
by Kristoffer
02:35
created
src/SanitizerServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,13 +21,13 @@
 block discarded – undo
21 21
     public function register()
22 22
     {
23 23
         $this->app->singleton(RegistrarInterface::class,
24
-            function (Container $app) {
24
+            function(Container $app) {
25 25
                 return new LaravelRegistrar($app);
26 26
             }
27 27
         );
28 28
 
29 29
         $this->app->bind(Sanitizer::class,
30
-            function (Application $app) {
30
+            function(Application $app) {
31 31
                 return (new Sanitizer)->setRegistrar(
32 32
                     $app->make(RegistrarInterface::class)
33 33
                 );
Please login to merge, or discard this patch.