@ -53,4 +53,10 @@ interface IManager extends IApp, INotifier {
* @since 8.2.0
*/
public function createNotification();
/**
* @return bool
public function hasNotifiers();
}
@ -112,6 +112,14 @@ class Manager implements IManager {
return new Notification();
public function hasNotifiers() {
return !empty($this->notifiersClosures);
* @param INotification $notification
* @return null