Skip to content

Commit

Permalink
Syncing files between app directory and bake skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Nov 13, 2011
1 parent 87f12de commit 233a633
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 18 deletions.
9 changes: 4 additions & 5 deletions app/Controller/AppController.php
Expand Up @@ -15,22 +15,21 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package Cake.Controller
* @package app.Controller
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

App::uses('Controller', 'Controller');

/**
* This is a placeholder class.
* Create the same file in app/Controller/AppController.php
* Application Controller
*
* Add your application-wide methods in the class below, your controllers
* will inherit them.
*
* @package Cake.Controller
* @link http://book.cakephp.org/view/957/The-App-Controller
* @package app.Controller
* @link http://book.cakephp.org/2.0/en/controllers.html#the-app-controller
*/
class AppController extends Controller {
}
4 changes: 2 additions & 2 deletions app/Controller/PagesController.php
Expand Up @@ -14,7 +14,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package Cake.Controller
* @package app.Controller
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand All @@ -26,7 +26,7 @@
*
* Override this controller by placing a copy in controllers directory of an application
*
* @package Cake.Controller
* @package app.Controller
* @link http://book.cakephp.org/2.0/en/controllers/pages-controller.html
*/
class PagesController extends AppController {
Expand Down
9 changes: 4 additions & 5 deletions app/Model/AppModel.php
Expand Up @@ -15,7 +15,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package Cake.Model
* @package app.Model
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand All @@ -25,11 +25,10 @@
/**
* Application model for Cake.
*
* This is a placeholder class.
* Create the same file in app/Model/AppModel.php
* Add your application-wide methods to the class, your models will inherit them.
* Add your application-wide methods in the class below, your models
* will inherit them.
*
* @package Cake.Model
* @package app.Model
*/
class AppModel extends Model {
}
7 changes: 3 additions & 4 deletions app/View/Helper/AppHelper.php
Expand Up @@ -15,20 +15,19 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package Cake.View.Helper
* @package app.View.Helper
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('Helper', 'View');

/**
* This is a placeholder class.
* Create the same file in app/View/Helper/AppHelper.php
* Application helper
*
* Add your application-wide methods in the class below, your helpers
* will inherit them.
*
* @package Cake.View.Helper
* @package app.View.Helper
*/
class AppHelper extends Helper {
}
Expand Up @@ -29,6 +29,7 @@
* will inherit them.
*
* @package app.Controller
* @link http://book.cakephp.org/2.0/en/controllers.html#the-app-controller
*/
class AppController extends Controller {
}
Expand Up @@ -25,6 +25,7 @@
* Override this controller by placing a copy in controllers directory of an application
*
* @package app.Controller
* @link http://book.cakephp.org/2.0/en/controllers/pages-controller.html
*/
class PagesController extends AppController {

Expand Down
3 changes: 1 addition & 2 deletions lib/Cake/Console/Templates/skel/View/Helper/AppHelper.php
Expand Up @@ -22,8 +22,7 @@
App::uses('Helper', 'View');

/**
* This is a placeholder class.
* Create the same file in app/View/Helper/AppHelper.php
* Application helper
*
* Add your application-wide methods in the class below, your helpers
* will inherit them.
Expand Down

0 comments on commit 233a633

Please sign in to comment.