From 5fa6f3b15fcc01a09a5e99746840bbfe51c4e578 Mon Sep 17 00:00:00 2001 From: Marc Bennewitz Date: Sat, 13 Dec 2014 21:00:01 +0100 Subject: [PATCH] Cache: fixed some minor documentation issues --- AdapterOptions.php | 2 +- DbaIterator.php | 2 +- XCache.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AdapterOptions.php b/AdapterOptions.php index b3669ff..7e49506 100644 --- a/AdapterOptions.php +++ b/AdapterOptions.php @@ -25,7 +25,7 @@ class AdapterOptions extends AbstractOptions /** * The adapter using these options * - * @var null|Filesystem + * @var null|StorageInterface */ protected $adapter; diff --git a/DbaIterator.php b/DbaIterator.php index a895ce5..a0a553a 100644 --- a/DbaIterator.php +++ b/DbaIterator.php @@ -17,7 +17,7 @@ class DbaIterator implements IteratorInterface /** * The apc storage instance * - * @var Apc + * @var Dba */ protected $storage; diff --git a/XCache.php b/XCache.php index 18073e9..d5021de 100644 --- a/XCache.php +++ b/XCache.php @@ -45,7 +45,7 @@ class XCache extends AbstractAdapter implements /** * Constructor * - * @param null|array|Traversable|ApcOptions $options + * @param null|array|Traversable|XCacheOptions $options * @throws Exception\ExceptionInterface */ public function __construct($options = null) @@ -74,7 +74,7 @@ public function __construct($options = null) /** * Set options. * - * @param array|Traversable|ApcOptions $options + * @param array|Traversable|XCacheOptions $options * @return XCache * @see getOptions() */