isCsrfTokenValid() 보호된 메소드

Checks the validity of a CSRF token.
protected isCsrfTokenValid ( string $id, string $token ) : boolean
$id string The id used when generating the token
$token string The actual token sent with the request that should be validated
리턴 boolean
예제 #1
0
 public function isCsrfTokenValid($id, $token)
 {
     return parent::isCsrfTokenValid($id, $token);
 }