refactored session and added unit tests for manager and driver.

This commit is contained in:
Taylor Otwell
2011-09-14 23:54:14 -05:00
parent 5196d015b8
commit 49c9094f32
13 changed files with 483 additions and 217 deletions

View File

@@ -9,7 +9,7 @@ class APC extends Driver {
*
* @var Proxy
*/
private $apc;
private $proxy;
/**
* The cache key from the cache configuration file.
@@ -25,7 +25,7 @@ class APC extends Driver {
* @param string $key
* @return void
*/
public function __construct(Proxy $apc, $key)
public function __construct(Proxy $proxy, $key)
{
$this->key = $key;
$this->proxy = $proxy;