Commit: 5fcd7819a4e3f5ae1ce55aca1d7f5735ba8608dd

Author: Nate Abele | Date: 2010-03-08 01:35:09 -0500
Cleaning up docblocks in various classes.
diff --git a/libraries/lithium/core/Adaptable.php b/libraries/lithium/core/Adaptable.php index 6ae2100..97ef5f9 100644 --- a/libraries/lithium/core/Adaptable.php +++ b/libraries/lithium/core/Adaptable.php @@ -22,15 +22,12 @@ use \SplDoublyLinkedList; * * All immediate subclasses to `Adaptable` must define the protected attributes `$_configurations` * and `$_adapters`. The former is where all local adapter named configurations will be - * stored (as a Collection of named configuration settings), and the latter must contain the - * Libraries::locate() compatible path string. + * stored (as an array of named configuration settings), and the latter must contain the + * `Libraries::locate()`-compatible path string (or array of strings) specifying how adapter classes + * should be located. * * This static class should **never** be called explicitly. * - * @see lithium\storage\Cache - * @see lithium\storage\Session - * @see lithium\analysis\Logger - * * @todo Implement as abstract class with abstract method `adapter` when Inspector has been fixed. */ class Adaptable extends \lithium\core\StaticObject { @@ -55,7 +52,7 @@ class Adaptable extends \lithium\core\StaticObject { /** * To be re-defined in sub-classes. * - * Holds the Libraries::locate() compatible path string where the adapter in question + * Holds the `Libraries::locate()`-compatible path string where the adapter in question * may be found. * * @var string Path string. diff --git a/libraries/lithium/storage/Session.php b/libraries/lithium/storage/Session.php index eea9db3..bc825a4 100644 --- a/libraries/lithium/storage/Session.php +++ b/libraries/lithium/storage/Session.php @@ -23,7 +23,7 @@ use \lithium\util\Collection; * process, which will then be available to you in all other parts of your application. * * Each adapter provides a consistent interface for the basic cache operations of `write`, `read` - * and `delete`, which can be used interchangably between all adapters. ty. + * and `delete`, which can be used interchangably between all adapters. * * For more information on `Session` methods and specific adapters, please see their relevant * documentation.