[Form] Removed unused Form::isCsrfTokenValid()

This commit is contained in:
Bernhard Schussek 2011-03-19 15:09:11 +01:00
parent 3e17b26105
commit d2210a2e79

View File

@ -308,22 +308,6 @@ class Form extends Field implements \IteratorAggregate, FormInterface
return count($this->fields); return count($this->fields);
} }
/**
* Returns whether the CSRF token is valid
*
* @return Boolean
*/
public function isCsrfTokenValid()
{
if (!$this->isCsrfProtected()) {
return true;
} else {
$token = $this->get($this->csrfFieldName)->getClientData();
return $this->csrfProvider->isCsrfTokenValid(get_class($this), $token);
}
}
/** /**
* Binds a request to the form * Binds a request to the form
* *