Completed
Branch master (37b1b9)
by Maxim
04:57
created
Category
src/ServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,14 +37,14 @@
 block discarded – undo
37 37
     {
38 38
         $app = $this->app;
39 39
 
40
-        $app->bind('email.compiler', function () use ($app) {
40
+        $app->bind('email.compiler', function() use ($app) {
41 41
             $cache = $app['config']['view.compiled'];
42 42
             $css = $app['config']['view.emails.css_files'];
43 43
 
44 44
             return new Compiler($app['files'], $cache, $css);
45 45
         });
46 46
 
47
-        $app['view']->addExtension('email.php', 'email', function () use ($app) {
47
+        $app['view']->addExtension('email.php', 'email', function() use ($app) {
48 48
             return new CompilerEngine($app['email.compiler']);
49 49
         });
50 50
     }
Please login to merge, or discard this patch.