Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MappedSuperclassStreamStrategy::__constructor has wrong initialization sequence #34

Closed
dottorbabba opened this issue Dec 11, 2014 · 0 comments
Labels

Comments

@dottorbabba
Copy link
Contributor

    public function __construct(EventStore $eventStore, AggregateType $superclass, array $aggregateTypeStreamMap = array())
    {
        $this->eventStore = $eventStore;

        $this->streamName = $this->buildStreamName($superclass);

        $this->aggregateTypeStreamMap = $aggregateTypeStreamMap;
    }

The MappedSuperclassStreamStrategy constructor executes streamName attribute initialization before aggregateTypeStreamMap attribute initialization, but buildStreamName uses aggregateTypeStreamMap attribute.
Given that order of inizialization $aggregateTypeStreamMap parameter is never considered and the streamName isn't inizialized properly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants