Skip to content

Commit

Permalink
move AppShell to app/Console/Command directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ceeram committed Jan 12, 2012
1 parent 97ce118 commit 9f40e6d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
Expand Up @@ -19,13 +19,12 @@
App::uses('Shell', 'Console');

/**
* This is a placeholder class.
* Create the same file in app/Console/Command/AppShell.php
* Application Shell
*
* Add your application-wide methods in the class below, your shells
* will inherit them.
*
* @package Cake.Console
* @package app.Console.Command
*/
class AppShell extends Shell {

Expand Down
31 changes: 31 additions & 0 deletions lib/Cake/Console/Templates/skel/Console/Command/AppShell.php
@@ -0,0 +1,31 @@
<?php
/**
* AppShell file
*
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since CakePHP(tm) v 2.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

App::uses('Shell', 'Console');

/**
* Application Shell
*
* Add your application-wide methods in the class below, your shells
* will inherit them.
*
* @package app.Console.Command
*/
class AppShell extends Shell {

}

0 comments on commit 9f40e6d

Please sign in to comment.