Browse Source

Add missing use statements.

Mark Scherer 11 years ago
parent
commit
67eb385486
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Model/Behavior/JsonableBehavior.php

+ 2 - 0
Model/Behavior/JsonableBehavior.php

@@ -9,6 +9,8 @@
  * @license http://www.opensource.org/licenses/mit-license.php The MIT License
  * @license http://www.opensource.org/licenses/mit-license.php The MIT License
  */
  */
 App::uses('ModelBehavior', 'Model');
 App::uses('ModelBehavior', 'Model');
+App::uses('Hash', 'Utility');
+App::uses('String', 'Utility');
 
 
 /**
 /**
  * A behavior that will json_encode (and json_decode) fields if they contain an array or specific pattern.
  * A behavior that will json_encode (and json_decode) fields if they contain an array or specific pattern.