2010-11-17 04:08:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* AppShell file
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2012-03-13 02:46:46 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-11-17 04:08:25 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2012-03-13 02:46:46 +00:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-11-17 04:08:25 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
|
* @since CakePHP(tm) v 2.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
2011-11-25 21:05:00 +00:00
|
|
|
App::uses('Shell', 'Console');
|
|
|
|
|
2010-11-17 04:08:25 +00:00
|
|
|
/**
|
2012-01-12 10:55:10 +00:00
|
|
|
* Application Shell
|
2010-11-17 04:08:25 +00:00
|
|
|
*
|
|
|
|
* Add your application-wide methods in the class below, your shells
|
|
|
|
* will inherit them.
|
|
|
|
*
|
2012-01-12 10:55:10 +00:00
|
|
|
* @package app.Console.Command
|
2010-11-17 04:08:25 +00:00
|
|
|
*/
|
|
|
|
class AppShell extends Shell {
|
|
|
|
|
|
|
|
}
|