Browse Source

fix more CS

Anthony GRASSIOT 11 years ago
parent
commit
d5a189d3f8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Shell/Task/PluginTask.php

+ 1 - 1
src/Shell/Task/PluginTask.php

@@ -138,7 +138,7 @@ class PluginTask extends BakeTask {
 			$out .= "class AppController extends BaseController {\n\n";
 			$out .= "}\n";
 			$this->createFile($this->path . $plugin . DS . $classBase . DS . 'Controller' . DS . $controllerFileName, $out);
-			$emptyFile = $this->path  . 'empty';
+			$emptyFile = $this->path . 'empty';
 			$this->_deleteEmptyFile($emptyFile);
 
 			$hasAutoloader = $this->_modifyAutoloader($plugin, $this->path);