Browse Source

Add constant for session token.

Taylor Otwell 13 years ago
parent
commit
0f5558d2e3
1 changed files with 10 additions and 3 deletions
  1. 10 3
      laravel/session/payload.php

+ 10 - 3
laravel/session/payload.php

@@ -36,6 +36,13 @@ class Payload {
 	 */
 	protected $driver;
 
+	/**
+	 * The string name of the CSRF token stored in the session.
+	 *
+	 * @var string
+	 */
+	const token = 'csrf_token';
+
 	/**
 	 * Create a new session payload instance.
 	 *
@@ -75,9 +82,9 @@ class Payload {
 		// class and the "csrf" filter to protect the application from cross-site
 		// request forgery attacks. The token is simply a long, random string
 		// which should be posted with each request.
-		if ( ! $this->has('csrf_token'))
+		if ( ! $this->has(Payload::token))
 		{
-			$this->put('csrf_token', Str::random(40));
+			$this->put(Payload::token, Str::random(40));
 		}		
 	}
 
@@ -244,7 +251,7 @@ class Payload {
 	 */
 	public function token()
 	{
-		return $this->get('csrf_token');
+		return $this->get(Payload::token);
 	}
 
 	/**