Merge pull request #19092 from owncloud/allow-checking-for-notifiers
Allow checking whether there are notifiers registered
This commit is contained in:
commit
0eb37e2d64
|
@ -53,4 +53,10 @@ interface IManager extends IApp, INotifier {
|
|||
* @since 8.2.0
|
||||
*/
|
||||
public function createNotification();
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
* @since 8.2.0
|
||||
*/
|
||||
public function hasNotifiers();
|
||||
}
|
||||
|
|
|
@ -112,6 +112,14 @@ class Manager implements IManager {
|
|||
return new Notification();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
* @since 8.2.0
|
||||
*/
|
||||
public function hasNotifiers() {
|
||||
return !empty($this->notifiersClosures);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param INotification $notification
|
||||
* @return null
|
||||
|
|
Loading…
Reference in New Issue