@@ -71,7 +71,7 @@ NS_ASSUME_NONNULL_BEGIN
7171
7272 @return The task that has will a have `result` set to `PFUser` if operation succeeds.
7373 */
74- + (BFTask PF_GENERIC ( PFUser *) *)logInInBackgroundWithReadPermissions:(nullable NSArray PF_GENERIC ( NSString *) *)permissions;
74+ + (BFTask< PFUser *> *)logInInBackgroundWithReadPermissions : (nullable NSArray < NSString *> *)permissions ;
7575
7676/* *
7777 *Asynchronously* logs in a user using Facebook with read permissions.
@@ -83,7 +83,7 @@ NS_ASSUME_NONNULL_BEGIN
8383 @param block The block to execute when the log in completes.
8484 It should have the following signature: `^(PFUser *user, NSError *error)`.
8585 */
86- + (void )logInInBackgroundWithReadPermissions:(nullable NSArray PF_GENERIC ( NSString *) *)permissions
86+ + (void )logInInBackgroundWithReadPermissions : (nullable NSArray < NSString *> *)permissions
8787 block : (nullable PFUserResultBlock)block ;
8888
8989/* *
@@ -96,7 +96,7 @@ NS_ASSUME_NONNULL_BEGIN
9696
9797 @return The task that has will a have `result` set to `PFUser` if operation succeeds.
9898 */
99- + (BFTask PF_GENERIC ( PFUser *) *)logInInBackgroundWithPublishPermissions:(nullable NSArray PF_GENERIC ( NSString *) *)permissions;
99+ + (BFTask< PFUser *> *)logInInBackgroundWithPublishPermissions : (nullable NSArray < NSString *> *)permissions ;
100100
101101/* *
102102 *Asynchronously* logs in a user using Facebook with publish permissions.
@@ -108,7 +108,7 @@ NS_ASSUME_NONNULL_BEGIN
108108 @param block The block to execute when the log in completes.
109109 It should have the following signature: `^(PFUser *user, NSError *error)`.
110110 */
111- + (void )logInInBackgroundWithPublishPermissions:(nullable NSArray PF_GENERIC ( NSString *) *)permissions
111+ + (void )logInInBackgroundWithPublishPermissions : (nullable NSArray < NSString *> *)permissions
112112 block : (nullable PFUserResultBlock)block ;
113113
114114/* *
@@ -121,7 +121,7 @@ NS_ASSUME_NONNULL_BEGIN
121121
122122 @return The task that has will a have `result` set to `PFUser` if operation succeeds.
123123 */
124- + (BFTask PF_GENERIC ( PFUser *) *)logInInBackgroundWithAccessToken:(FBSDKAccessToken *)accessToken;
124+ + (BFTask< PFUser *> *)logInInBackgroundWithAccessToken : (FBSDKAccessToken *)accessToken ;
125125
126126/* *
127127 *Asynchronously* logs in a user using given Facebook Acess Token.
@@ -152,8 +152,8 @@ NS_ASSUME_NONNULL_BEGIN
152152
153153 @return The task that will have a `result` set to `@YES` if operation succeeds.
154154 */
155- + (BFTask PF_GENERIC ( NSNumber *) *)linkUserInBackground:(PFUser *)user
156- withReadPermissions:(nullable NSArray PF_GENERIC ( NSString *) *)permissions;
155+ + (BFTask< NSNumber *> *)linkUserInBackground : (PFUser *)user
156+ withReadPermissions : (nullable NSArray < NSString *> *)permissions ;
157157
158158/* *
159159 *Asynchronously* links Facebook with read permissions to an existing `PFUser`.
@@ -168,7 +168,7 @@ NS_ASSUME_NONNULL_BEGIN
168168 It should have the following signature: `^(BOOL succeeded, NSError *error)`.
169169 */
170170+ (void )linkUserInBackground : (PFUser *)user
171- withReadPermissions:(nullable NSArray PF_GENERIC ( NSString *) *)permissions
171+ withReadPermissions : (nullable NSArray < NSString *> *)permissions
172172 block : (nullable PFBooleanResultBlock)block ;
173173
174174/* *
@@ -183,8 +183,8 @@ NS_ASSUME_NONNULL_BEGIN
183183
184184 @return The task that will have a `result` set to `@YES` if operation succeeds.
185185 */
186- + (BFTask PF_GENERIC ( NSNumber *) *)linkUserInBackground:(PFUser *)user
187- withPublishPermissions:(NSArray PF_GENERIC ( NSString *) *)permissions;
186+ + (BFTask< NSNumber *> *)linkUserInBackground : (PFUser *)user
187+ withPublishPermissions : (NSArray < NSString *> *)permissions ;
188188
189189/* *
190190 *Asynchronously* links Facebook with publish permissions to an existing `PFUser`.
@@ -199,7 +199,7 @@ NS_ASSUME_NONNULL_BEGIN
199199 It should have the following signature: `^(BOOL succeeded, NSError *error)`.
200200 */
201201+ (void )linkUserInBackground : (PFUser *)user
202- withPublishPermissions:(NSArray PF_GENERIC ( NSString *) *)permissions
202+ withPublishPermissions : (NSArray < NSString *> *)permissions
203203 block : (nullable PFBooleanResultBlock)block ;
204204
205205/* *
@@ -214,7 +214,7 @@ NS_ASSUME_NONNULL_BEGIN
214214
215215 @return The task that will have a `result` set to `@YES` if operation succeeds.
216216 */
217- + (BFTask PF_GENERIC ( NSNumber *) *)linkUserInBackground:(PFUser *)user withAccessToken:(FBSDKAccessToken *)accessToken;
217+ + (BFTask< NSNumber *> *)linkUserInBackground : (PFUser *)user withAccessToken : (FBSDKAccessToken *)accessToken ;
218218
219219/* *
220220 *Asynchronously* links Facebook Access Token to an existing `PFUser`.
@@ -242,7 +242,7 @@ NS_ASSUME_NONNULL_BEGIN
242242 @param user User to unlink from Facebook.
243243 @return The task, that encapsulates the work being done.
244244 */
245- + (BFTask PF_GENERIC ( NSNumber *) *)unlinkUserInBackground:(PFUser *)user;
245+ + (BFTask< NSNumber *> *)unlinkUserInBackground : (PFUser *)user ;
246246
247247/* *
248248 Unlinks the `PFUser` from a Facebook account *asynchronously*.
0 commit comments