- Timestamp:
- 06/21/07 16:49:13 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/cache/stubAbstractCacheContainer.php
r741 r742 13 13 * @subpackage util_cache 14 14 */ 15 abstract class stubAbstractCacheContainer extends stub BaseObject15 abstract class stubAbstractCacheContainer extends stubSerializableObject 16 16 { 17 17 /** … … 38 38 * 39 39 * @param string $id id of the container 40 * @param stubCacheStrategy $strategy strategy the container should use 41 */ 42 public function __construct($id, stubCacheStrategy $strategy) 43 { 44 $this->id = $id; 45 $this->strategy = $strategy; 40 */ 41 public function __construct($id) 42 { 43 $this->id = $id; 46 44 } 47 45
