Browse Source

change cookie::sign to public.

Taylor Otwell 13 years ago
parent
commit
ded215d0e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cookie.php

+ 1 - 1
laravel/cookie.php

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