Browse Source

fixed coding standard errors

ukk1337 12 years ago
parent
commit
3cd6bb39bd
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lib/Cake/Console/Command/Task/ControllerTask.php

+ 3 - 3
lib/Cake/Console/Command/Task/ControllerTask.php

@@ -184,10 +184,10 @@ class ControllerTask extends BakeTask {
 				$wannaUseSession = $this->in(
 					__d('cake_console', "Would you like to use Session flash messages?"), array('y', 'n'), 'y'
 				);
-				
-	 	                if (strtolower($wannaUseSession) === 'y') {
+
+				if (strtolower($wannaUseSession) === 'y') {
 					array_push($components, 'Session');
-            			}
+				}
 			}
 		} else {
 			list($wannaBakeCrud, $wannaBakeAdminCrud) = $this->_askAboutMethods();