Skip to content

Commit 35484eb

Browse files
committed
Change actions var to open for consistency
1 parent affb703 commit 35484eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/RecombinePackage/Store/BaseStore.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public class BaseStore<State: Equatable, RawAction, RefinedAction>: StoreProtoco
8585
.store(in: &cancellables)
8686
}
8787

88-
public var actions: AnyPublisher<Action, Never> {
88+
open var actions: AnyPublisher<Action, Never> {
8989
Publishers.Merge(
9090
_rawActions.map(Action.raw),
9191
_postMiddlewareRefinedActions.flatMap(\.publisher).map(Action.refined)

0 commit comments

Comments
 (0)