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 | |
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')
-rw-r--r-- | Csrf/TokenStorage/NativeSessionTokenStorage.php | 2 | ||||
-rw-r--r-- | Csrf/TokenStorage/TokenStorageInterface.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Csrf/TokenStorage/NativeSessionTokenStorage.php b/Csrf/TokenStorage/NativeSessionTokenStorage.php index 8e9b280..af5931b 100644 --- a/Csrf/TokenStorage/NativeSessionTokenStorage.php +++ b/Csrf/TokenStorage/NativeSessionTokenStorage.php @@ -28,7 +28,7 @@ class NativeSessionTokenStorage implements TokenStorageInterface const SESSION_NAMESPACE = '_csrf'; /** - * @var Boolean + * @var bool */ private $sessionStarted = false; 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); } |