Built out logout procedure.

This commit is contained in:
Josh Sherman 2013-12-16 18:24:39 -05:00
parent 29987e8640
commit 74257193f1
4 changed files with 60 additions and 5 deletions

View file

@ -85,6 +85,16 @@ class RedisModel extends Object
switch ($base)
{
case 'set':
if (isset($arguments[1]))
{
$arguments = $arguments[1];
}
else
{
$key = $this->key(substr($name, 3));
var_dump($key, $arguments);
}
$arguments = array($key, $arguments[1]);
break;