Skip to content

Commit 7f6ff52

Browse files
committed
[UG] Add spaces to remove 4 "duplicate object description" warnings
1 parent 695c046 commit 7f6ff52

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

user_guide_src/source/libraries/caching.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ The settings for the Redis server that you wish to use when using the ``Redis``
7575
Class Reference
7676
***************
7777

78-
.. php:method:: isSupported()
78+
.. php:method:: isSupported()
7979
8080
:returns: TRUE if supported, FALSE if not
8181
:rtype: bool
8282

83-
.. php:method:: get($key)
83+
.. php:method:: get($key)
8484
8585
:param string $key: Cache item name
8686
:returns: Item value or NULL if not found
@@ -93,7 +93,7 @@ Class Reference
9393

9494
$foo = $cache->get('my_cached_item');
9595

96-
.. php:method:: save($key, $data[, $ttl = 60[, $raw = FALSE]])
96+
.. php:method:: save($key, $data[, $ttl = 60[, $raw = FALSE]])
9797
9898
:param string $key: Cache item name
9999
:param mixed $data: the data to save
@@ -112,7 +112,7 @@ Class Reference
112112
.. note:: The ``$raw`` parameter is only utilized by Memcache,
113113
in order to allow usage of ``increment()`` and ``decrement()``.
114114

115-
.. php:method:: delete($key)
115+
.. php:method:: delete($key)
116116
117117
:param string $key: name of cached item
118118
:returns: TRUE on success, FALSE on failure
@@ -125,7 +125,7 @@ Class Reference
125125

126126
$cache->delete('cache_item_id');
127127

128-
.. php:method:: increment($key[, $offset = 1])
128+
.. php:method:: increment($key[, $offset = 1])
129129
130130
:param string $key: Cache ID
131131
:param int $offset: Step/value to add
@@ -142,7 +142,7 @@ Class Reference
142142

143143
$cache->increment('iterator', 3); // 'iterator' is now 6
144144

145-
.. php:method:: decrement($key[, $offset = 1])
145+
.. php:method:: decrement($key[, $offset = 1])
146146
147147
:param string $key: Cache ID
148148
:param int $offset: Step/value to reduce by
@@ -159,7 +159,7 @@ Class Reference
159159

160160
$cache->decrement('iterator', 2); // 'iterator' is now 3
161161

162-
.. php:method:: clean()
162+
.. php:method:: clean()
163163
164164
:returns: TRUE on success, FALSE on failure
165165
:rtype: bool
@@ -171,7 +171,7 @@ Class Reference
171171

172172
$cache->clean();
173173

174-
.. php:method:: cache_info()
174+
.. php:method:: cache_info()
175175
176176
:returns: Information on the entire cache database
177177
:rtype: mixed
@@ -185,7 +185,7 @@ Class Reference
185185
.. note:: The information returned and the structure of the data is dependent
186186
on which adapter is being used.
187187

188-
.. php:method:: getMetadata($key)
188+
.. php:method:: getMetadata($key)
189189
190190
:param string $key: Cache item name
191191
:returns: Metadata for the cached item

0 commit comments

Comments
 (0)