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:
Diffstat (limited to 'plugins/Overlay/API.php')
-rw-r--r--plugins/Overlay/API.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Overlay/API.php b/plugins/Overlay/API.php
index 8fd8f26a0b..cd6e4f6754 100644
--- a/plugins/Overlay/API.php
+++ b/plugins/Overlay/API.php
@@ -107,7 +107,7 @@ class API extends \Piwik\Plugin\API
private function authenticate($idSite)
{
/**
- * Triggered shortly before the user is authenticated.
+ * Triggered immediately before the user is authenticated.
*
* This event can be used by plugins that provide their own authentication mechanism
* to make that mechanism available. Subscribers should set the `'auth'` object in
@@ -122,7 +122,7 @@ class API extends \Piwik\Plugin\API
* Registry::set('auth', new LDAPAuth($allowCookieAuthentication));
* }
*
- * @param bool $allowCookieAuthentication Whether authentication based on $_COOKIE values should
+ * @param bool $allowCookieAuthentication Whether authentication based on `$_COOKIE` values should
* be allowed.
*/
Piwik::postEvent('Request.initAuthenticationObject', array($allowCookieAuthentication = true));