Change csrf_token constant.
This commit is contained in:
parent
d82f1d40c0
commit
b7b5bc6938
|
|
@ -41,7 +41,7 @@ class Payload {
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const token = 'csrf_token';
|
||||
const csrf_token = 'csrf_token';
|
||||
|
||||
/**
|
||||
* Create a new session payload instance.
|
||||
|
|
@ -82,9 +82,9 @@ public function load($id)
|
|||
// 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(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 @@ public function regenerate()
|
|||
*/
|
||||
public function token()
|
||||
{
|
||||
return $this->get(Payload::token);
|
||||
return $this->get(Payload::csrf_token);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -324,4 +324,4 @@ protected function cookie()
|
|||
Cookie::put($cookie, $this->session['id'], $minutes, $path, $domain, $secure);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue