File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,11 @@ import FirebaseAnalytics
37
37
*/
38
38
39
39
@objc ( SEGFirebaseDestination)
40
- public class ObjCFirebaseDestination : NSObject , ObjCPlugin , ObjCPluginShim {
41
- public func instance( ) -> EventPlugin { return FirebaseDestination ( ) }
42
- }
40
+ open class ObjCFirebaseDestination : NSObject , ObjCPlugin , ObjCPluginShim {
41
+ public func instance( ) -> EventPlugin { return FirebaseDestination ( ) }
42
+ }
43
43
44
- public class FirebaseDestination : DestinationPlugin {
44
+ open class FirebaseDestination : DestinationPlugin {
45
45
public let timeline = Timeline ( )
46
46
public let type = PluginType . destination
47
47
public let key = " Firebase "
@@ -52,8 +52,8 @@ public class FirebaseDestination: DestinationPlugin {
52
52
public init ( firebaseOptions: FirebaseOptions ? = nil ) {
53
53
self . firebaseOptions = firebaseOptions
54
54
}
55
-
56
- public func update( settings: Settings , type: UpdateType ) {
55
+
56
+ open func update( settings: Settings , type: UpdateType ) {
57
57
// we've already set up this singleton SDK, can't do it again, so skip.
58
58
guard type == . initial else { return }
59
59
You can’t perform that action at this time.
0 commit comments