Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 742e41e

Browse files
committed
Fixes DocBlocks in Zend_Cache_Backend_ZendServer_ShMem
1 parent ce3e66d commit 742e41e

File tree

1 file changed

+6
-5
lines changed
  • library/Zend/Cache/Backend/ZendServer

1 file changed

+6
-5
lines changed

library/Zend/Cache/Backend/ZendServer/ShMem.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ public function __construct(array $options = array())
5353
/**
5454
* Store data
5555
*
56-
* @param mixed $data Object to store
57-
* @param string $id Cache id
58-
* @param int $timeToLive Time to live in seconds
59-
*
56+
* @param mixed $data Object to store
57+
* @param string $id Cache id
58+
* @param int $timeToLive Time to live in seconds
59+
* @return bool
6060
*/
6161
protected function _store($data, $id, $timeToLive)
6262
{
@@ -72,7 +72,8 @@ protected function _store($data, $id, $timeToLive)
7272
/**
7373
* Fetch data
7474
*
75-
* @param string $id Cache id
75+
* @param string $id Cache id
76+
* @return mixed|null
7677
*/
7778
protected function _fetch($id)
7879
{

0 commit comments

Comments
 (0)