File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,8 @@ an example:
179
179
return @[ internalProvider ];
180
180
}
181
181
182
- + (FIRFunctions *)functionsWithApp:(FIRApp *)app {
182
+ // The public entry point for the SDK.
183
+ + (FIRFunctions *)functionsForApp:(FIRApp *)app {
183
184
// Get the instance from the `FIRApp`'s container. This will create a new instance the
184
185
// first time it is called, and since `isCacheable` is set in the component creation
185
186
// block, it will return the existing instance on subsequent calls.
@@ -238,7 +239,8 @@ could conform to and provide to other frameworks:
238
239
return @[authInterop];
239
240
}
240
241
241
- + (FIRAuth *)authWithApp:(FIRApp *)app {
242
+ // The public entry point for the SDK.
243
+ + (FIRAuth *)authForApp:(FIRApp *)app {
242
244
// Use the instance from the provided app's container.
243
245
id<FIRAuthInteroperable> auth = FIR_COMPONENT(FIRAuthInteroperable, app.container);
244
246
return (FIRAuth *)auth;
You can’t perform that action at this time.
0 commit comments