Signed-off-by: Joas Schilling <coding@schilljs.com>
/** @var IApp[] */
protected $apps;
-
- /** @var INotifier[] */
- protected $notifiers;
-
- /** @var array[] */
- protected $notifiersInfo;
-
/** @var string[] */
protected $appClasses;
+ /** @var INotifier[] */
+ protected $notifiers;
/** @var string[] */
protected $notifierClasses;
- /** @var \Closure[] */
- protected $notifiersInfoClosures;
-
/** @var bool */
protected $preparingPushNotification;
* @since 8.2.0
*/
public function hasNotifiers(): bool {
- return !empty($this->notifiersClosures);
+ return !empty($this->notifiers) || !empty($this->notifierClasses);
}
/**