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:
authorThomas Steur <thomas.steur@gmail.com>2013-10-27 03:42:07 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-27 03:42:07 +0400
commiteb7370feda103b83eb16a473f0b61fe8d001f300 (patch)
treec08ea1f24b953df05308673e72b05d1b4c650e2b /core/Notification
parent91160d978a114fc335866410a77f90ee6cd58eb3 (diff)
refs #4179 coding style
Diffstat (limited to 'core/Notification')
-rw-r--r--core/Notification/Manager.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/Notification/Manager.php b/core/Notification/Manager.php
index 372337eb9c..2fd53a3c50 100644
--- a/core/Notification/Manager.php
+++ b/core/Notification/Manager.php
@@ -23,9 +23,11 @@ class Manager
private static $session = null;
/**
- * Post a notification to be shown in the status bar. If a notification with the same id has already been posted by your application and has not yet been canceled, it will be replaced by the updated information.
+ * Post a notification to be shown in the status bar. If a notification with the same id has already been posted
+ * by your application and has not yet been canceled, it will be replaced by the updated information.
*
- * @param string $id A unique identifier for this notification. Id must be a string and may contain only word characters (AlNum + underscore)
+ * @param string $id A unique identifier for this notification. Id must be a string and may contain only
+ * word characters (AlNum + underscore)
* @param Notification $notification
*/
public static function notify($id, Notification $notification)
@@ -57,7 +59,7 @@ class Manager
}
/**
- * Cancel a previously registered notification.
+ * Cancel a previously registered (or persistent) notification.
* @param $id
*/
public static function cancel($id)