summaryrefslogtreecommitdiffstats
path: root/Csrf
diff options
context:
space:
mode:
authorBernhard Schussek <bschussek@gmail.com>2013-09-30 15:41:48 +0200
committerBernhard Schussek <bschussek@gmail.com>2013-09-30 15:41:48 +0200
commit78f7ee0a8a60284b74c14dbbe601de26ded1350e (patch)
treeddec330cab8ab1205bd3b07b92771b120a69b723 /Csrf
parent1e792d17b2d6bc3842425f3664b92a32b600e646 (diff)
downloadsymfony-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.php2
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);