Skip to content

Commit

Permalink
Merge pull request #545 from natanfelles/memcached
Browse files Browse the repository at this point in the history
Updated Memcached::deleteMulti return type and description + plus minor formatting improvement in memcached.php
  • Loading branch information
andrey-sokolov authored Mar 25, 2019
2 parents c4769a8 + 1edf536 commit e2f6629
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions memcached/memcached.php
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,8 @@ class Memcached {
const RES_IN_PROGRESS = 46;
const RES_MAXIMUM_RETURN = 49;



/**
* <p>Failed to create network socket.</p>
* @link https://php.net/manual/en/memcached.constants.php
Expand Down Expand Up @@ -980,7 +980,7 @@ public function delete ($key, $time = 0) {}
* @param int $time [optional] <p>
* The amount of time the server will wait to delete the items.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @return array Returns array indexed by keys and where values are indicating whether operation succeeded or not.
* The <b>Memcached::getResultCode</b> will return
* <b>Memcached::RES_NOTFOUND</b> if the key does not exist.
*/
Expand Down Expand Up @@ -1251,7 +1251,7 @@ public function setOption ($option, $value) {}
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
public function setOptions (array $options) {}

/**
* (PECL memcached &gt;= 2.0.0)<br/>
* Set the credentials to use for authentication
Expand Down

0 comments on commit e2f6629

Please sign in to comment.