File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -54,8 +54,8 @@ PF_ASSUME_NONNULL_BEGIN
54
54
55
55
@returns The task, that encapsulates the work being done.
56
56
*/
57
- + (BFTask *)callFunctionInBackground : (NSString *)function
58
- withParameters : (PF_NULLABLE NSDictionary *)parameters ;
57
+ + (BFTask PF_GENERIC ( id ) *)callFunctionInBackground:(NSString *)function
58
+ withParameters:(PF_NULLABLE NSDictionary *)parameters;
59
59
60
60
/* !
61
61
@abstract Calls the given cloud function *asynchronously* with the parameters provided
Original file line number Diff line number Diff line change @@ -824,7 +824,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
824
824
825
825
@returns The task that encapsulates the work being done.
826
826
*/
827
- - (BFTask PF_GENERIC (NSNull *)*)deleteEventually;
827
+ - (BFTask PF_GENERIC (NSNumber *)*)deleteEventually;
828
828
829
829
// /--------------------------------------
830
830
// / @name Dirtiness
Original file line number Diff line number Diff line change @@ -335,10 +335,10 @@ typedef void(^PFUserLogoutResultBlock)(NSError *PF_NULLABLE_S error);
335
335
and you application's 'Require Revocable Session' setting is turned off on `http://parse.com` app settings.
336
336
After returned `BFTask` completes - <PFSession> class and APIs will be available for use.
337
337
338
- @returns An instance of `BFTask` that is completed when
339
- revocable sessions are enabled and currentUser token is migrated.
338
+ @returns An instance of `BFTask` that is completed when revocable
339
+ sessions are enabled and currentUser token is migrated.
340
340
*/
341
- + (BFTask PF_GENERIC ( NSNull *) *)enableRevocableSessionInBackground;
341
+ + (BFTask *)enableRevocableSessionInBackground ;
342
342
343
343
/* !
344
344
@abstract Enables revocable sessions and upgrades the currentUser session token to use revocable session if needed.
@@ -369,7 +369,7 @@ typedef void(^PFUserLogoutResultBlock)(NSError *PF_NULLABLE_S error);
369
369
370
370
@returns An instance of `BFTask`, that is resolved with `nil` result when logging out completes.
371
371
*/
372
- + (BFTask PF_GENERIC ( NSNull *) *)logOutInBackground;
372
+ + (BFTask *)logOutInBackground ;
373
373
374
374
/* !
375
375
@abstract *Asynchronously* logs out the currently logged in user.
You can’t perform that action at this time.
0 commit comments