1234567891011121314151617181920212223242526272829303132333435363738394041 |
-
-
- #import "FIRGoogleAuthProvider.h"
-
- #import "FIRGoogleAuthCredential.h"
- #import "FIRAuthExceptionUtils.h"
-
-
-
- NS_ASSUME_NONNULL_BEGIN
-
- @implementation FIRGoogleAuthProvider
-
- - (instancetype)init {
- [FIRAuthExceptionUtils raiseMethodNotImplementedExceptionWithReason:
- @"This class is not meant to be initialized."];
- return nil;
- }
-
- + (FIRAuthCredential *)credentialWithIDToken:(NSString *)IDToken
- accessToken:(NSString *)accessToken {
- return [[FIRGoogleAuthCredential alloc] initWithIDToken:IDToken accessToken:accessToken];
- }
-
- @end
-
- NS_ASSUME_NONNULL_END
|