Commit b7b5bc69 authored by Taylor Otwell's avatar Taylor Otwell

Change csrf_token constant.

parent d82f1d40
...@@ -41,7 +41,7 @@ class Payload { ...@@ -41,7 +41,7 @@ class Payload {
* *
* @var string * @var string
*/ */
const token = 'csrf_token'; const csrf_token = 'csrf_token';
/** /**
* Create a new session payload instance. * Create a new session payload instance.
...@@ -82,9 +82,9 @@ class Payload { ...@@ -82,9 +82,9 @@ class Payload {
// class and the "csrf" filter to protect the application from cross-site // class and the "csrf" filter to protect the application from cross-site
// request forgery attacks. The token is simply a long, random string // request forgery attacks. The token is simply a long, random string
// which should be posted with each request. // which should be posted with each request.
if ( ! $this->has(Payload::token)) if ( ! $this->has(Payload::csrf_token))
{ {
$this->put(Payload::token, Str::random(40)); $this->put(Payload::csrf_token, Str::random(40));
} }
} }
...@@ -251,7 +251,7 @@ class Payload { ...@@ -251,7 +251,7 @@ class Payload {
*/ */
public function token() public function token()
{ {
return $this->get(Payload::token); return $this->get(Payload::csrf_token);
} }
/** /**
...@@ -324,4 +324,4 @@ class Payload { ...@@ -324,4 +324,4 @@ class Payload {
Cookie::put($cookie, $this->session['id'], $minutes, $path, $domain, $secure); Cookie::put($cookie, $this->session['id'], $minutes, $path, $domain, $secure);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment