change cookie::sign to public.

This commit is contained in:
Taylor Otwell
2012-02-01 11:42:37 -06:00
parent 2504f8693f
commit ded215d0e3

View File

@@ -147,7 +147,7 @@ class Cookie {
* @param string $value * @param string $value
* @return string * @return string
*/ */
protected static function sign($name, $value) public static function sign($name, $value)
{ {
return static::hash($name, $value).'~'.$value; return static::hash($name, $value).'~'.$value;
} }