Completed
Push — master ( 442456...cc2955 )
by AJ
01:54
created
config/routes.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 		
29 29
 		foreach ($subdomains AS $prefix) {
30 30
 			
31
-			Router::scope('/', ['prefix' => $prefix], function($routes) { 
31
+			Router::scope('/', ['prefix' => $prefix], function($routes) {
32 32
 				$routes->fallbacks('InflectedRoute');
33 33
 			});
34 34
 			
Please login to merge, or discard this patch.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -22,19 +22,19 @@
 block discarded – undo
22 22
 
23 23
 if ($validConfiguration) {
24 24
 
25
-	$subdomains = Configure::read('Multidimensional/Subdomains.subdomains');
25
+    $subdomains = Configure::read('Multidimensional/Subdomains.subdomains');
26 26
 	
27
-	if (is_array($subdomains)) {
27
+    if (is_array($subdomains)) {
28 28
 		
29
-		foreach ($subdomains AS $prefix) {
29
+        foreach ($subdomains AS $prefix) {
30 30
 			
31
-			Router::scope('/', ['prefix' => $prefix], function($routes) { 
32
-				$routes->fallbacks('DashedRoute');
31
+            Router::scope('/', ['prefix' => $prefix], function($routes) { 
32
+                $routes->fallbacks('DashedRoute');
33 33
 
34
-			});
34
+            });
35 35
 			
36
-		}
36
+        }
37 37
 	
38
-	}
38
+    }
39 39
 	
40
-	}
41 40
\ No newline at end of file
41
+    }
42 42
\ No newline at end of file
Please login to merge, or discard this patch.