Commit 11aabe4a authored by Taylor Otwell's avatar Taylor Otwell

move back to memcache

parent 1192abe3
<?php namespace Laravel\Cache\Drivers; use Memcached; <?php namespace Laravel\Cache\Drivers; use Memcache;
class Memcached extends Driver { class Memcached extends Driver {
/** /**
* The Memcache instance. * The Memcache instance.
* *
* @var Memcached * @var Memcache
*/ */
protected $memcache; protected $memcache;
...@@ -19,10 +19,10 @@ class Memcached extends Driver { ...@@ -19,10 +19,10 @@ class Memcached extends Driver {
/** /**
* Create a new Memcached cache driver instance. * Create a new Memcached cache driver instance.
* *
* @param Memcached $memcache * @param Memcache $memcache
* @return void * @return void
*/ */
public function __construct(Memcached $memcache, $key) public function __construct(Memcache $memcache, $key)
{ {
$this->key = $key; $this->key = $key;
$this->memcache = $memcache; $this->memcache = $memcache;
......
...@@ -5,7 +5,7 @@ class Memcached { ...@@ -5,7 +5,7 @@ class Memcached {
/** /**
* The Memcached connection instance. * The Memcached connection instance.
* *
* @var Memcached * @var Memcache
*/ */
protected static $connection; protected static $connection;
...@@ -40,7 +40,7 @@ class Memcached { ...@@ -40,7 +40,7 @@ class Memcached {
*/ */
protected static function connect($servers) protected static function connect($servers)
{ {
$memcache = new \Memcached; $memcache = new \Memcache;
foreach ($servers as $server) foreach ($servers as $server)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment