diff --git a/docs/cloud-messaging/receive.md b/docs/cloud-messaging/receive.md index 65850719d761..27f02d081d8a 100644 --- a/docs/cloud-messaging/receive.md +++ b/docs/cloud-messaging/receive.md @@ -529,13 +529,13 @@ At this point, everything should still be running normally. The final step is in ```objc #import "NotificationService.h" #import "FirebaseMessaging.h" - #import "FirebaseAuth.h" // Add this line if you are using FirebaseAuth phone authentication + #import // Add this line if you are using FirebaseAuth phone authentication #import // Add this line if you are using FirebaseAuth phone authentication - @interface NotificationService () + @interface NotificationService () - @property (nonatomic, strong) void (^contentHandler)(UNNotificationContent *contentToDeliver); - @property (nonatomic, strong) UNMutableNotificationContent *bestAttemptContent; + @property(nonatomic) void (^contentHandler)(UNNotificationContent *contentToDeliver); + @property(nonatomic) UNMutableNotificationContent *bestAttemptContent; @end