change cookie::sign to public.

This commit is contained in:
Taylor Otwell 2012-02-01 11:42:37 -06:00
parent 2504f8693f
commit ded215d0e3
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ public static function forever($name, $value, $path = '/', $domain = null, $secu
* @param string $value
* @return string
*/
protected static function sign($name, $value)
public static function sign($name, $value)
{
return static::hash($name, $value).'~'.$value;
}