From 7f0230465478b11ff28f8ed40911d26ef5c326d5 Mon Sep 17 00:00:00 2001 From: Bernhard Schussek Date: Mon, 30 Sep 2013 15:41:48 +0200 Subject: [PATCH] [Security] Added missing PHPDoc tag --- .../Component/Security/Csrf/CsrfTokenGeneratorInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Component/Security/Csrf/CsrfTokenGeneratorInterface.php b/src/Symfony/Component/Security/Csrf/CsrfTokenGeneratorInterface.php index c7800a55ea..c34549f11d 100644 --- a/src/Symfony/Component/Security/Csrf/CsrfTokenGeneratorInterface.php +++ b/src/Symfony/Component/Security/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);