Completed
Branch master (f12285)
by Anton
05:52
created
Category
source/Vault/VaultRoute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     {
38 38
         $route = $this;
39 39
 
40
-        return function () use ($route) {
40
+        return function() use ($route) {
41 41
             $matches = $route->getMatches();
42 42
 
43 43
             return $route->callAction($matches['controller'], $matches['action'], $matches);
Please login to merge, or discard this patch.
source/VaultModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@
 block discarded – undo
48 48
         );
49 49
 
50 50
         $publisher->publishDirectory(
51
-            __DIR__ . '/../resources',                        //Profiler js, css and modules
52
-            $directories->directory('public') . 'resources',  //Expected directory in webroot
51
+            __DIR__ . '/../resources', //Profiler js, css and modules
52
+            $directories->directory('public') . 'resources', //Expected directory in webroot
53 53
             PublisherInterface::OVERWRITE                     //We can safely overwrite resources
54 54
         );
55 55
     }
Please login to merge, or discard this patch.