Skip to content

Commit

Permalink
Fix coding standards errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Aug 17, 2013
1 parent e600e54 commit 0ecdd6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/BakeShell.php
Expand Up @@ -14,8 +14,8 @@
*/
namespace Cake\Console\Command;

use Cake\Console\Shell;
use Cake\Cache\Cache;
use Cake\Console\Shell;
use Cake\Core\App;
use Cake\Core\Configure;
use Cake\Model\Model;
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/UpgradeShell.php
Expand Up @@ -134,7 +134,7 @@ protected function _replaceUses($file) {
$matches = $this->_mapClassName($matches);
if (count($matches) === 4) {
$use = $matches[3] . '\\' . $matches[2] . '\\' . $matches[1];
} else if ($matches[2] == 'Vendor') {
} elseif ($matches[2] == 'Vendor') {
$this->out(
__d('cake_console', '<info>Skip %s as it is a vendor library.</info>', $matches[1]),
1,
Expand Down

0 comments on commit 0ecdd6f

Please sign in to comment.