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/Login/Login.php')
-rw-r--r--plugins/Login/Login.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/Login/Login.php b/plugins/Login/Login.php
index 1f836e72cb..7c8bcbe994 100644
--- a/plugins/Login/Login.php
+++ b/plugins/Login/Login.php
@@ -42,7 +42,7 @@ class Piwik_Login extends Piwik_Plugin
* Redirects to Login form with error message.
* Listens to FrontController.NoAccessException hook.
*
- * @param Piwik_Event_Notification $notification
+ * @param Piwik_Event_Notification $notification notification object
*/
function noAccess( $notification )
{
@@ -57,7 +57,7 @@ class Piwik_Login extends Piwik_Plugin
* Set login name and autehntication token for authentication request.
* Listens to API.Request.authenticate hook.
*
- * @param Piwik_Event_Notification $notification
+ * @param Piwik_Event_Notification $notification notification object
*/
function ApiRequestAuthenticate($notification)
{
@@ -70,7 +70,7 @@ class Piwik_Login extends Piwik_Plugin
* Initializes the authentication object.
* Listens to FrontController.initAuthenticationObject hook.
*
- * @param Piwik_Event_Notification $notification
+ * @param Piwik_Event_Notification $notification notification object
*/
function initAuthenticationObject($notification)
{
@@ -98,12 +98,13 @@ class Piwik_Login extends Piwik_Plugin
$auth->setLogin($defaultLogin);
$auth->setTokenAuth($defaultTokenAuth);
}
-
+
/**
* Authenticate user and initializes the session.
* Listens to Login.initSession hook.
*
- * @param Piwik_Event_Notification $notification
+ * @param Piwik_Event_Notification $notification notification object
+ * @throws Exception
*/
function initSession($notification)
{