Checks whether an incoming CSRF token name and value is valid.
/**
* Checks whether an incoming CSRF token name and value is valid.
*
* @param string $name The incoming token name.
* @param string $value The incoming token value.
*
* @return bool True if valid, false if not.
*/
public function isValid(string $name, string $value): bool
Examples
if (! $csrf->isValid($_POST[$csrf->getTokenName()])) {
echo "This looks like a cross-site request forgery.";
} else {
echo "This looks like a valid request.";
}