diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-16 12:34:42 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-16 12:34:42 +0200 |
commit | e61596f268884e2584fb667016b4c3ad72270a1d (patch) | |
tree | 218b993ab5e172356a018d29ef083552a015ab25 /Csrf/TokenStorage/TokenStorageInterface.php | |
parent | 9efff1d83d7b20d340c0abfcfe738640867882f6 (diff) | |
download | symfony-security-e61596f268884e2584fb667016b4c3ad72270a1d.zip symfony-security-e61596f268884e2584fb667016b4c3ad72270a1d.tar.gz symfony-security-e61596f268884e2584fb667016b4c3ad72270a1d.tar.bz2 |
fixed types in phpdocs
Diffstat (limited to 'Csrf/TokenStorage/TokenStorageInterface.php')
-rw-r--r-- | Csrf/TokenStorage/TokenStorageInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Csrf/TokenStorage/TokenStorageInterface.php b/Csrf/TokenStorage/TokenStorageInterface.php index 3fb3191..ea3a6a8 100644 --- a/Csrf/TokenStorage/TokenStorageInterface.php +++ b/Csrf/TokenStorage/TokenStorageInterface.php @@ -53,7 +53,7 @@ interface TokenStorageInterface * * @param string $tokenId The token ID * - * @return Boolean Whether a token exists with the given ID + * @return bool Whether a token exists with the given ID */ public function hasToken($tokenId); } |