supports($blueprint)) { return; } $this->notifier->sendToUser($recipient, $blueprint); } /** * Limit which notification types are allowed for Teams. */ protected function supports(BlueprintInterface $blueprint): bool { return in_array($blueprint::getType(), [ 'newPost', 'postMentioned', 'userMentioned', 'discussionRenamed', 'postLiked', ], true); } }