Completed
Push — master ( 3108c8...abd0b4 )
by AJ
8s
created
config/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
  
41 41
 EventManager::instance()->on(
42 42
     'Server.buildMiddleware',
43
-    function ($event, $middleware) {
43
+    function($event, $middleware) {
44 44
         $middleware->add(new SubdomainMiddleware());
45 45
     }
46 46
 );
47 47
\ No newline at end of file
Please login to merge, or discard this patch.
config/routes.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 $subdomainsObject = new SubdomainMiddleware();
24 24
 $subdomains = $subdomainsObject->getSubdomains();
25 25
 
26
-if (is_array($subdomains)) {   
26
+if (is_array($subdomains)) {
27 27
 	foreach ($subdomains AS $prefix) {
28 28
 		Router::scope('/', ['prefix' => $prefix], function($routes) {
29 29
 			$routes->fallbacks('Multidimensional/Subdomains.SubdomainRoute');
Please login to merge, or discard this patch.