Skip to content

Commit

Permalink
Remove unused methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 23, 2017
1 parent 88844d2 commit c4d4033
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions src/Http/Cookie/Cookie.php
Expand Up @@ -541,36 +541,6 @@ public function decrypt($key = null)
return $this;
}

/**
* Expands a serialized cookie value
*
* @return $this
*/
public function expand()
{
if (!$this->isExpanded) {
$this->value = $this->_expand($this->value);
$this->isExpanded = true;
}

return $this;
}

/**
* Serializes the cookie value to a string
*
* @return $this
*/
public function flatten()
{
if ($this->isExpanded) {
$this->value = $this->_flatten($this->value);
$this->isExpanded = false;
}

return $this;
}

/**
* Checks if the cookie value was expanded
*
Expand Down

0 comments on commit c4d4033

Please sign in to comment.