Skip to content

Commit

Permalink
missing app uses statements
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Jul 21, 2012
1 parent a7865b5 commit 4fe1ab1
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
Expand Up @@ -18,6 +18,7 @@
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('AppController', 'Controller');

/**
* Static content controller
Expand Down
1 change: 1 addition & 0 deletions lib/Cake/Controller/CakeErrorController.php
Expand Up @@ -18,6 +18,7 @@
* @since CakePHP(tm) v 2.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('AppController', 'Controller');

/**
* Error Handling Controller
Expand Down
1 change: 1 addition & 0 deletions lib/Cake/Controller/Component/PaginatorComponent.php
Expand Up @@ -16,6 +16,7 @@
* @since CakePHP(tm) v 2.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('Component', 'Controller/Component');
App::uses('Hash', 'Utility');

/**
Expand Down
1 change: 1 addition & 0 deletions lib/Cake/Controller/Component/RequestHandlerComponent.php
Expand Up @@ -19,6 +19,7 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

App::uses('Component', 'Controller/Component');
App::uses('Xml', 'Utility');

/**
Expand Down
1 change: 1 addition & 0 deletions lib/Cake/Model/Behavior/AclBehavior.php
Expand Up @@ -18,6 +18,7 @@
* @since CakePHP v 1.2.0.4487
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('ModelBehavior', 'Model/Behavior');
App::uses('AclNode', 'Model');
App::uses('Hash', 'Utility');

Expand Down
1 change: 1 addition & 0 deletions lib/Cake/Model/Behavior/ContainableBehavior.php
Expand Up @@ -18,6 +18,7 @@
* @since CakePHP(tm) v 1.2.0.5669
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('ModelBehavior', 'Model/Behavior');

/**
* Behavior to allow for dynamic and atomic manipulation of a Model's associations
Expand Down
1 change: 1 addition & 0 deletions lib/Cake/Model/Behavior/TranslateBehavior.php
Expand Up @@ -13,6 +13,7 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

App::uses('ModelBehavior', 'Model/Behavior');
App::uses('I18n', 'I18n');
App::uses('I18nModel', 'Model');

Expand Down
1 change: 1 addition & 0 deletions lib/Cake/Model/Behavior/TreeBehavior.php
Expand Up @@ -18,6 +18,7 @@
* @since CakePHP v 1.2.0.4487
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('ModelBehavior', 'Model/Behavior');

/**
* Tree Behavior.
Expand Down
1 change: 1 addition & 0 deletions lib/Cake/Model/I18nModel.php
Expand Up @@ -12,6 +12,7 @@
* @since CakePHP(tm) v 1.2.0.4525
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('AppModel', 'Model');

/**
* A model used by TranslateBehavior to access the translation tables.
Expand Down

0 comments on commit 4fe1ab1

Please sign in to comment.