2010-11-16 23:08:25 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* AppShell file
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2012-03-12 22:46:07 -04:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-11-16 23:08:25 -05:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2012-03-12 22:46:07 -04:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-11-16 23:08:25 -05: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-26 02:35:00 +05:30
|
|
|
App::uses('Shell', 'Console');
|
|
|
|
|
2010-11-16 23:08:25 -05:00
|
|
|
/**
|
2012-01-12 11:55:10 +01:00
|
|
|
* Application Shell
|
2010-11-16 23:08:25 -05:00
|
|
|
*
|
|
|
|
* Add your application-wide methods in the class below, your shells
|
|
|
|
* will inherit them.
|
|
|
|
*
|
2012-01-12 11:55:10 +01:00
|
|
|
* @package app.Console.Command
|
2010-11-16 23:08:25 -05:00
|
|
|
*/
|
|
|
|
class AppShell extends Shell {
|
|
|
|
|
|
|
|
}
|