diff --git a/src/Http/Cookie.php b/src/Http/Cookie.php index 3ce11c5..348bab6 100644 --- a/src/Http/Cookie.php +++ b/src/Http/Cookie.php @@ -34,7 +34,7 @@ public function setValue($value = null) if ($this->raw) { $this->value = $value; } else { - $this->value = serialize($$value); + $this->value = serialize($value); } return $this;