Browse Source

Code sniff fix.

Brian Porter 11 years ago
parent
commit
7d8d2f2f18
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Cake/Console/Command/SchemaShell.php

+ 1 - 1
lib/Cake/Console/Command/SchemaShell.php

@@ -68,7 +68,7 @@ class SchemaShell extends AppShell {
 		}
 		if ($name && empty($this->params['file'])) {
 			$this->params['file'] = Inflector::underscore($name);
-		} elseif(empty($this->params['file'])) {
+		} elseif (empty($this->params['file'])) {
 			$this->params['file'] = 'schema.php';
 		}
 		if (strpos($this->params['file'], '.php') === false) {