Skip to content

Commit

Permalink
refs #4179 coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteur committed Oct 26, 2013
1 parent 91160d9 commit eb7370f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions core/Notification/Manager.php
Expand Up @@ -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)
Expand Down Expand Up @@ -57,7 +59,7 @@ public static function getAllNotificationsToDisplay()
}

/**
* Cancel a previously registered notification.
* Cancel a previously registered (or persistent) notification.
* @param $id
*/
public static function cancel($id)
Expand Down

0 comments on commit eb7370f

Please sign in to comment.