@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * If the $key string is not a legal value a \Psr\Cache\InvalidArgumentException |
48 | 48 | * MUST be thrown. |
49 | 49 | * |
50 | - * @return CacheItemInterface |
|
50 | + * @return \Psr\Cache\CacheItemInterface |
|
51 | 51 | * The corresponding Cache Item. |
52 | 52 | */ |
53 | 53 | public function getItem($key) |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | /** |
255 | 255 | * Persists a cache item immediately. |
256 | 256 | * |
257 | - * @param CacheItemInterface $item |
|
257 | + * @param \Psr\Cache\CacheItemInterface $item |
|
258 | 258 | * The cache item to save. |
259 | 259 | * |
260 | 260 | * @return bool |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | /** |
277 | 277 | * Sets a cache item to be persisted later. |
278 | 278 | * |
279 | - * @param CacheItemInterface $item |
|
279 | + * @param \Psr\Cache\CacheItemInterface $item |
|
280 | 280 | * The cache item to save. |
281 | 281 | * |
282 | 282 | * @return bool |
@@ -228,7 +228,6 @@ |
||
228 | 228 | * |
229 | 229 | * @param array $keys |
230 | 230 | * An array of keys that should be removed from the pool. |
231 | - |
|
232 | 231 | * @throws InvalidArgumentException |
233 | 232 | * If any of the keys in $keys are not a legal value a \Psr\Cache\InvalidArgumentException |
234 | 233 | * MUST be thrown. |
@@ -152,10 +152,10 @@ |
||
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
155 | - * Sets the timezone that should be used for the expiration time |
|
156 | - * |
|
157 | - * @param DateTimeZone $timeZone The timezone used for the expiration time |
|
158 | - */ |
|
155 | + * Sets the timezone that should be used for the expiration time |
|
156 | + * |
|
157 | + * @param DateTimeZone $timeZone The timezone used for the expiration time |
|
158 | + */ |
|
159 | 159 | public function setTimeZone($timeZone) |
160 | 160 | { |
161 | 161 | $this->timeZone = $timeZone; |
@@ -228,7 +228,6 @@ |
||
228 | 228 | * |
229 | 229 | * @param array $keys |
230 | 230 | * An array of keys that should be removed from the pool. |
231 | - |
|
232 | 231 | * @throws InvalidArgumentException |
233 | 232 | * If any of the keys in $keys are not a legal value a \Psr\Cache\InvalidArgumentException |
234 | 233 | * MUST be thrown. |