Skip to content

Commit

Permalink
Adding class docblock.
Browse files Browse the repository at this point in the history
  • Loading branch information
psychic authored and gwoo committed Feb 12, 2010
1 parent 995af20 commit 6f84d98
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libraries/lithium/util/Collection.php
Expand Up @@ -9,8 +9,12 @@
namespace lithium\util;

/**
* Collection class to implement ArrayAccess, Iterator, and Countable
* The parent class for all collection objects. Contains methods for collection iteration,
* conversion, and filtering. Implements ArrayAccess, Iterator, and Countable.
*
* @link http://us.php.net/manual/en/class.arrayaccess.php
* @link http://us.php.net/manual/en/class.iterator.php
* @link http://us.php.net/manual/en/class.countable.php
*/
class Collection extends \lithium\core\Object implements \ArrayAccess, \Iterator, \Countable {

Expand Down

0 comments on commit 6f84d98

Please sign in to comment.