diff options
author | Bernhard Schussek <bschussek@gmail.com> | 2013-09-30 15:41:48 +0200 |
---|---|---|
committer | Bernhard Schussek <bschussek@gmail.com> | 2013-09-30 15:41:48 +0200 |
commit | 78f7ee0a8a60284b74c14dbbe601de26ded1350e (patch) | |
tree | ddec330cab8ab1205bd3b07b92771b120a69b723 /Csrf | |
parent | 1e792d17b2d6bc3842425f3664b92a32b600e646 (diff) | |
download | symfony-security-78f7ee0a8a60284b74c14dbbe601de26ded1350e.zip symfony-security-78f7ee0a8a60284b74c14dbbe601de26ded1350e.tar.gz symfony-security-78f7ee0a8a60284b74c14dbbe601de26ded1350e.tar.bz2 |
[Security] Added missing PHPDoc tag
Diffstat (limited to 'Csrf')
-rw-r--r-- | Csrf/CsrfTokenGeneratorInterface.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Csrf/CsrfTokenGeneratorInterface.php b/Csrf/CsrfTokenGeneratorInterface.php index c7800a5..c34549f 100644 --- a/Csrf/CsrfTokenGeneratorInterface.php +++ b/Csrf/CsrfTokenGeneratorInterface.php @@ -35,6 +35,8 @@ interface CsrfTokenGeneratorInterface * Generates a CSRF token with the given token ID. * * @param string $tokenId An ID that identifies the token + * + * @return string The generated CSRF token */ public function generateCsrfToken($tokenId); |