mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Expanding and correcting the doc block for ObjectCollection.
This commit is contained in:
parent
e9907cb9da
commit
1548b7badb
1 changed files with 13 additions and 8 deletions
|
@ -1,10 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Deals with Collections of objects. Keeping registries of those objects,
|
|
||||||
* loading and constructing new objects and triggering callbacks.
|
|
||||||
*
|
|
||||||
* PHP 5
|
|
||||||
*
|
|
||||||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
||||||
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
*
|
*
|
||||||
|
@ -13,11 +8,21 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
||||||
* @link http://cakephp.org CakePHP(tm) Project
|
* @link http://cakephp.org CakePHP(tm) Project
|
||||||
* @package cake
|
|
||||||
* @subpackage cake.cake.libs.view
|
|
||||||
* @since CakePHP(tm) v 0.10.0.1076
|
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
/**
|
||||||
|
* Deals with Collections of objects. Keeping registries of those objects,
|
||||||
|
* loading and constructing new objects and triggering callbacks. Each subclass needs
|
||||||
|
* to implement its own load() functionality.
|
||||||
|
*
|
||||||
|
* All core subclasses of ObjectCollection by convention loaded objects are stored
|
||||||
|
* in `$this->_loaded`. Enabled objects are stored in `$this->_enabled`. In addition
|
||||||
|
* the all support an `enabled` option that controls the enabled/disabled state of the object
|
||||||
|
* when loaded.
|
||||||
|
*
|
||||||
|
* @package cake.libs
|
||||||
|
* @since CakePHP(tm) v 2.0
|
||||||
|
*/
|
||||||
abstract class ObjectCollection {
|
abstract class ObjectCollection {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue