Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
commit1fa8da9b963e99e08c829fe6491e8ccf2d1054e2 (patch)
tree137c50850a5f21f1651f8066d4bd381a661e1987 /core/Nonce.php
parentfcbef99dbf93df94ff5ed4cfaa5eeebfcf4aac14 (diff)
Applying phpstorm code style PSR refs #3771
Diffstat (limited to 'core/Nonce.php')
-rw-r--r--core/Nonce.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/Nonce.php b/core/Nonce.php
index 35b611d800..0f526fb328 100644
--- a/core/Nonce.php
+++ b/core/Nonce.php
@@ -31,8 +31,8 @@ class Nonce
/**
* Generate nonce
*
- * @param string $id Unique id to avoid namespace conflicts, e.g., ModuleName.ActionName
- * @param int $ttl Optional time-to-live in seconds; default is 5 minutes
+ * @param string $id Unique id to avoid namespace conflicts, e.g., ModuleName.ActionName
+ * @param int $ttl Optional time-to-live in seconds; default is 5 minutes
* @return string Nonce
*/
static public function getNonce($id, $ttl = 300)
@@ -56,8 +56,8 @@ class Nonce
/**
* Verify nonce and check referrer (if present, i.e., it may be suppressed by the browser or a proxy/network).
*
- * @param string $id Unique id
- * @param string $cnonce Nonce sent to client
+ * @param string $id Unique id
+ * @param string $cnonce Nonce sent to client
* @return bool true if valid; false otherwise
*/
static public function verifyNonce($id, $cnonce)
@@ -91,7 +91,7 @@ class Nonce
/**
* Discard nonce ("now" as opposed to waiting for garbage collection)
*
- * @param string $id Unique id
+ * @param string $id Unique id
*/
static public function discardNonce($id)
{