Added the placeholder class for an 'AppShell'.

Conflicts:

	cake/console/cake.php
This commit is contained in:
mark_story 2010-11-16 23:06:25 -05:00
parent 3237402fb8
commit b0ddfa0755
2 changed files with 18 additions and 0 deletions

View file

@ -23,3 +23,4 @@
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR. 'shell_dispatcher.php');
return ShellDispatcher::run($argv);

View file

@ -0,0 +1,17 @@
<?php
/**
* This is a placeholder class.
* Create the same file in app/vendors/shells/app_shell.php
*
* Add your application-wide methods in the class below, your shells
* will inherit them.
*
* @package cake
* @subpackage cake.cake.console.libs
*/
class AppShell extends Shell {
public function main() {
}
}