PHPDoc fixes

This commit is contained in:
Phill Sparks
2012-02-04 21:30:52 +00:00
parent f3be544b1a
commit 62072e5281
36 changed files with 74 additions and 56 deletions

View File

@@ -5,7 +5,7 @@ class Memcached {
/**
* The Memcached connection instance.
*
* @var Memcache
* @var Memcached
*/
protected static $connection;
@@ -20,7 +20,7 @@ class Memcached {
* Memcached::connection()->set('name', 'Taylor');
* </code>
*
* @return Memcache
* @return Memcached
*/
public static function connection()
{
@@ -36,7 +36,7 @@ class Memcached {
* Create a new Memcached connection instance.
*
* @param array $servers
* @return Memcache
* @return Memcached
*/
protected static function connect($servers)
{