Updating documentation to improve code completion

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8114 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
renan.saddam 2009-03-17 21:10:28 +00:00
parent de5907326e
commit 76e0f17dbc
22 changed files with 116 additions and 116 deletions

View file

@ -36,7 +36,7 @@ class AclShell extends Shell {
/**
* Contains instance of AclComponent
*
* @var object
* @var AclComponent
* @access public
*/
var $Acl;

View file

@ -34,7 +34,7 @@ class Shell extends Object {
/**
* An instance of the ShellDispatcher object that loaded this script
*
* @var object
* @var ShellDispatcher
* @access public
*/
var $Dispatch = null;
@ -49,7 +49,7 @@ class Shell extends Object {
* Holds the DATABASE_CONFIG object for the app. Null if database.php could not be found,
* or the app does not exist.
*
* @var object
* @var DATABASE_CONFIG
* @access public
*/
var $DbConfig = null;

View file

@ -33,7 +33,7 @@ class Cache extends Object {
/**
* Cache engine to use
*
* @var object
* @var CacheEngine
* @access protected
*/
var $_Engine = null;

View file

@ -34,7 +34,7 @@ class FileEngine extends CacheEngine {
/**
* Instance of File class
*
* @var object
* @var File
* @access private
*/
var $__File = null;

View file

@ -33,7 +33,7 @@ class MemcacheEngine extends CacheEngine {
/**
* Memcache wrapper.
*
* @var object
* @var Memcache
* @access private
*/
var $__Memcache = null;

View file

@ -39,7 +39,7 @@ class Scaffold extends Object {
/**
* Controller object
*
* @var object
* @var Controller
* @access public
*/
var $controller = null;

View file

@ -70,7 +70,7 @@ class ErrorHandler extends Object {
/**
* Controller instance.
*
* @var object
* @var Controller
* @access public
*/
var $controller = null;

View file

@ -42,7 +42,7 @@ class File extends Object {
/**
* Folder object of the File
*
* @var object
* @var Folder
* @access public
*/
var $Folder = null;

View file

@ -40,7 +40,7 @@ class I18n extends Object {
/**
* Instance of the I10n class for localization
*
* @var object
* @var I10n
* @access public
*/
var $l10n = null;

View file

@ -205,11 +205,11 @@ class ModelBehavior extends Object {
* @subpackage cake.cake.libs.model
*/
class BehaviorCollection extends Object {
/**
* Stores a reference to the attached name
*
* @var object
* @var string
* @access public
*/
var $modelName = null;
/**

View file

@ -39,7 +39,7 @@ class ConnectionManager extends Object {
/**
* Holds a loaded instance of the Connections object
*
* @var object
* @var DATABASE_CONFIG
* @access public
*/
var $config = null;

View file

@ -221,7 +221,7 @@ class Model extends Overloadable {
/**
* Holds the Behavior objects currently bound to this model.
*
* @var object
* @var BehaviorCollection
* @access public
*/
var $Behaviors = null;

View file

@ -38,7 +38,7 @@ class Object {
/**
* Log object
*
* @var object
* @var CakeLog
* @access protected
*/
var $_log = null;

View file

@ -42,14 +42,14 @@ class AjaxHelper extends AppHelper {
/**
* HtmlHelper instance
*
* @var object
* @var HtmlHelper
* @access public
*/
var $Html = null;
/**
* JavaScriptHelper instance
*
* @var object
* @var JavaScriptHelper
* @access public
*/
var $Javascript = null;

View file

@ -52,7 +52,7 @@ class CacheHelper extends AppHelper {
/**
* holds the View object passed in final call to CacheHelper::cache()
*
* @var object
* @var View
* @access public
*/
var $view;

View file

@ -34,7 +34,7 @@ class MagicDbTest extends UnitTestCase {
/**
* The MagicDb instance to be tested
*
* @var object
* @var MagicDb
* @access public
*/
var $Db = null;

View file

@ -182,7 +182,7 @@ class DboAdodbTest extends CakeTestCase {
/**
* The Dbo instance to be tested
*
* @var object
* @var DboSource
* @access public
*/
var $db = null;

View file

@ -192,7 +192,7 @@ class DboMssqlTest extends CakeTestCase {
/**
* The Dbo instance to be tested
*
* @var object
* @var DboSource
* @access public
*/
var $db = null;

View file

@ -156,7 +156,7 @@ class DboMysqlTest extends CakeTestCase {
/**
* The Dbo instance to be tested
*
* @var object
* @var DboSource
* @access public
*/
var $Db = null;

View file

@ -159,7 +159,7 @@ class DboMysqliTest extends CakeTestCase {
/**
* The Dbo instance to be tested
*
* @var object
* @var DboSource
* @access public
*/
var $Db = null;

View file

@ -164,14 +164,14 @@ class DboPostgresTest extends CakeTestCase {
/**
* Actual DB connection used in testing
*
* @var object
* @var DboSource
* @access public
*/
var $db = null;
/**
* Simulated DB connection used in testing
*
* @var object
* @var DboSource
* @access public
*/
var $db2 = null;

View file

@ -83,14 +83,14 @@ class DboSqliteTest extends CakeTestCase {
/**
* Actual DB connection used in testing
*
* @var object
* @var DboSource
* @access public
*/
var $db = null;
/**
* Simulated DB connection used in testing
*
* @var object
* @var DboSource
* @access public
*/
var $db2 = null;