├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── myconfig.ini ├── phpunit.xml.dist ├── src └── Governor │ └── Framework │ ├── Annotations │ ├── AggregateIdentifier.php │ ├── CommandHandler.php │ ├── EndSaga.php │ ├── EventHandler.php │ ├── EventSourcedMember.php │ ├── EventSourcingHandler.php │ ├── Inject.php │ ├── MetaData.php │ ├── Order.php │ ├── Resolve.php │ ├── SagaEventHandler.php │ ├── StartSaga.php │ ├── TargetAggregateIdentifier.php │ └── TargetAggregateVersion.php │ ├── Audit │ ├── AuditDataProviderInterface.php │ ├── AuditLoggerInterface.php │ ├── AuditingInterceptor.php │ ├── AuditingUnitOfWorkListener.php │ ├── CommandMetaDataProvider.php │ ├── CorrelationAuditDataProvider.php │ ├── EmptyDataProvider.php │ └── NullAuditLogger.php │ ├── CommandHandling │ ├── AnnotationCommandTargetResolver.php │ ├── Callbacks │ │ ├── ClosureCommandCallback.php │ │ ├── NoOpCallback.php │ │ └── ResultCallback.php │ ├── CommandBusInterface.php │ ├── CommandCallbackInterface.php │ ├── CommandDispatchInterceptorInterface.php │ ├── CommandHandlerInterceptorInterface.php │ ├── CommandHandlerInterface.php │ ├── CommandMessageInterface.php │ ├── CommandTargetResolverInterface.php │ ├── DefaultInterceptorChain.php │ ├── Distributed │ │ ├── AbstractRoutingStrategy.php │ │ ├── AnnotationRoutingStrategy.php │ │ ├── CommandBusConnectorInterface.php │ │ ├── CommandDispatchException.php │ │ ├── CommandReceiver.php │ │ ├── CommandTimeoutException.php │ │ ├── DispatchMessage.php │ │ ├── DistributedCommandBus.php │ │ ├── MetaDataRoutingStrategy.php │ │ ├── RedisCommandBusConnector.php │ │ ├── RedisTemplate.php │ │ ├── ReplyMessage.php │ │ ├── RoutingStrategyInterface.php │ │ └── UnresolvedRoutingKeyPolicy.php │ ├── Gateway │ │ ├── AbstractCommandGateway.php │ │ ├── CommandGatewayInterface.php │ │ └── DefaultCommandGateway.php │ ├── GenericCommandMessage.php │ ├── Handlers │ │ ├── AbstractAnnotatedCommandHandler.php │ │ ├── AnnotatedAggregateCommandHandler.php │ │ └── AnnotatedCommandHandler.php │ ├── InterceptorChainInterface.php │ ├── Interceptors │ │ ├── ValidatorException.php │ │ └── ValidatorInterceptor.php │ ├── NoHandlerForCommandException.php │ ├── SimpleCommandBus.php │ ├── StructuralCommandValidationFailedException.php │ └── VersionedAggregateIdentifier.php │ ├── Common │ ├── AbstractParameterResolverFactory.php │ ├── AnnotatedMetaDataParameterResolver.php │ ├── Annotation │ │ ├── AnnotatedHandlerDefinition.php │ │ ├── AnnotationReaderFactoryInterface.php │ │ ├── FileCacheAnnotationReaderFactory.php │ │ ├── HandlerDefinitionInterface.php │ │ ├── MethodMessageHandlerInspector.php │ │ └── SimpleAnnotationReaderFactory.php │ ├── ContainerParameterResolverFactory.php │ ├── DefaultParameterResolverFactory.php │ ├── DelegatingParameterResolverFactory.php │ ├── FixedValueParameterResolver.php │ ├── IdentifierValidator.php │ ├── Logging │ │ └── NullLogger.php │ ├── MetaDataParameterResolver.php │ ├── Mongo │ │ └── AuthenticatingMongoTemplate.php │ ├── ParameterResolverFactoryInterface.php │ ├── ParameterResolverInterface.php │ ├── PayloadParameterResolver.php │ ├── Property │ │ ├── PropertyAccessStrategy.php │ │ ├── PropertyInterface.php │ │ ├── ReflectionMethodImpl.php │ │ ├── ReflectionPropertyAccessStrategy.php │ │ └── ReflectionPropertyImpl.php │ ├── ReceiverInterface.php │ └── ReflectionUtils.php │ ├── Correlation │ ├── CorrelationDataHolder.php │ ├── CorrelationDataProviderInterface.php │ ├── MultiCorrelationDataProvider.php │ └── SimpleCorrelationDataProvider.php │ ├── Domain │ ├── AbstractAggregateRoot.php │ ├── AggregateRootIdNotInitialized.php │ ├── AggregateRootInterface.php │ ├── DefaultIdentifierFactory.php │ ├── DomainEventMessageInterface.php │ ├── DomainEventStreamInterface.php │ ├── EventContainer.php │ ├── EventMessageInterface.php │ ├── EventRegistrationCallbackInterface.php │ ├── GenericDomainEventMessage.php │ ├── GenericEventMessage.php │ ├── GenericMessage.php │ ├── IdentifierFactory.php │ ├── MessageInterface.php │ ├── MetaData.php │ └── SimpleDomainEventStream.php │ ├── EventHandling │ ├── Amqp │ │ ├── AmqpConsumerConfigurationInterface.php │ │ ├── AmqpMessage.php │ │ ├── AmqpMessageConverterInterface.php │ │ ├── AmqpTerminal.php │ │ ├── ChannelTransactionUnitOfWorkListener.php │ │ ├── DefaultAmqpConsumerConfiguration.php │ │ ├── DefaultAmqpMessageConverter.php │ │ ├── EventPublicationFailedException.php │ │ ├── NamespaceRoutingKeyResolver.php │ │ └── RoutingKeyResolverInterface.php │ ├── AnnotationOrderResolver.php │ ├── EventBusInterface.php │ ├── EventListenerInterface.php │ ├── EventListenerProxyInterface.php │ ├── EventListenerRegistryInterface.php │ ├── EventListenerSubscriptionFailedException.php │ ├── EventProcessingMonitorCollection.php │ ├── EventProcessingMonitorInterface.php │ ├── EventProcessingMonitorSupportInterface.php │ ├── InMemoryEventListenerRegistry.php │ ├── Io │ │ ├── EventMessageReader.php │ │ └── EventMessageWriter.php │ ├── Listeners │ │ ├── AnnotatedEventListener.php │ │ └── AnnotatedEventListenerAdapter.php │ ├── OrderResolverInterface.php │ ├── Replay │ │ ├── DiscardingIncomingMessageHandler.php │ │ ├── EventProcessingListeners.php │ │ ├── IncomingMessageHandlerInterface.php │ │ ├── ReplayAwareInterface.php │ │ ├── ReplayingEventBus.php │ │ └── ReplayingEventVisitor.php │ ├── SimpleEventBus.php │ └── TerminalInterface.php │ ├── EventSourcing │ ├── AbstractAggregateFactory.php │ ├── AbstractEventSourcedAggregateRoot.php │ ├── AbstractEventSourcedEntity.php │ ├── AbstractSnapshotter.php │ ├── AggregateDeletedException.php │ ├── AggregateFactoryInterface.php │ ├── Annotation │ │ ├── AbstractAnnotatedAggregateRoot.php │ │ ├── AbstractAnnotatedEntity.php │ │ └── AnnotationAggregateInspector.php │ ├── CapturingEventStream.php │ ├── ConflictResolverInterface.php │ ├── ConflictResolvingListener.php │ ├── EventSourcedAggregateRootInterface.php │ ├── EventSourcedEntityInterface.php │ ├── EventSourcingRepository.php │ ├── EventStreamDecoratorInterface.php │ ├── GenericAggregateFactory.php │ ├── HybridDoctrineRepository.php │ ├── IncompatibleAggregateException.php │ └── SnapshotterInterface.php │ ├── EventStore │ ├── EventStoreException.php │ ├── EventStoreInterface.php │ ├── EventStreamNotFoundException.php │ ├── EventVisitorInterface.php │ ├── Filesystem │ │ ├── EventFileResolverInterface.php │ │ ├── FilesystemDomainEventStream.php │ │ ├── FilesystemEventMessageReader.php │ │ ├── FilesystemEventMessageWriter.php │ │ ├── FilesystemEventStore.php │ │ ├── FilesystemSnapshotEventReader.php │ │ ├── FilesystemSnapshotEventWriter.php │ │ ├── SimpleEventFileResolver.php │ │ └── SnapshotFilesystemDomainEventStream.php │ ├── Management │ │ ├── CriteriaBuilderInterface.php │ │ ├── CriteriaInterface.php │ │ ├── EventStoreManagementInterface.php │ │ └── PropertyInterface.php │ ├── Mongo │ │ ├── Criteria │ │ │ ├── AndX.php │ │ │ ├── CollectionCriteria.php │ │ │ ├── Equals.php │ │ │ ├── MongoCriteria.php │ │ │ ├── MongoCriteriaBuilder.php │ │ │ ├── MongoProperty.php │ │ │ ├── OrX.php │ │ │ └── SimpleMongoOperator.php │ │ ├── CursorBackedDomainEventStream.php │ │ ├── DefaultMongoTemplate.php │ │ ├── DocumentPerEventStorageStrategy.php │ │ ├── EventEntry.php │ │ ├── MongoEventStore.php │ │ ├── MongoTemplateInterface.php │ │ └── StorageStrategyInterface.php │ ├── Orm │ │ ├── AbstractEventEntry.php │ │ ├── BatchingAggregateStreamIterator.php │ │ ├── BatchingIterator.php │ │ ├── Criteria │ │ │ ├── BinaryOperator.php │ │ │ ├── CollectionOperator.php │ │ │ ├── Equals.php │ │ │ ├── NotEquals.php │ │ │ ├── OrmCriteria.php │ │ │ ├── OrmCriteriaBuilder.php │ │ │ ├── OrmProperty.php │ │ │ ├── ParameterRegistry.php │ │ │ └── SimpleOperator.php │ │ ├── DefaultEventEntryStore.php │ │ ├── DomainEventEntry.php │ │ ├── EventEntryStoreInterface.php │ │ ├── OrmDomainEventStream.php │ │ ├── OrmEventStore.php │ │ ├── SimpleSerializedDomainEventData.php │ │ └── SnapshotEventEntry.php │ ├── PartialEventStreamSupportInterface.php │ └── SnapshotEventStoreInterface.php │ ├── Repository │ ├── AbstractRepository.php │ ├── AggregateNotFoundException.php │ ├── ConcurrencyException.php │ ├── ConflictingAggregateVersionException.php │ ├── ConflictingModificationException.php │ ├── GenericOrmRepository.php │ ├── LockManagerInterface.php │ ├── LockingRepository.php │ ├── NullLockManager.php │ ├── OptimisticLockManager.php │ ├── RepositoryInterface.php │ └── SimpleSaveAggregateCallback.php │ ├── Saga │ ├── AbstractSagaManager.php │ ├── Annotation │ │ ├── AbstractAnnotatedSaga.php │ │ ├── AnnotatedSagaManager.php │ │ ├── AssociationValuesImpl.php │ │ ├── SagaMethodMessageHandler.php │ │ └── SagaMethodMessageHandlerInspector.php │ ├── AssociationValue.php │ ├── AssociationValueResolverInterface.php │ ├── AssociationValuesInterface.php │ ├── ContainerAwareResourceInjector.php │ ├── GenericSagaFactory.php │ ├── NullResourceInjector.php │ ├── Repository │ │ ├── AbstractSagaRepository.php │ │ ├── Memory │ │ │ └── InMemorySagaRepository.php │ │ ├── Mongo │ │ │ ├── DefaultMongoTemplate.php │ │ │ ├── MongoSagaRepository.php │ │ │ ├── MongoTemplateInterface.php │ │ │ └── SagaEntry.php │ │ └── Orm │ │ │ ├── AssociationValueEntry.php │ │ │ ├── OrmSagaRepository.php │ │ │ ├── SagaEntry.php │ │ │ └── SerializedSaga.php │ ├── ResourceInjectorInterface.php │ ├── SagaCreationPolicy.php │ ├── SagaFactoryInterface.php │ ├── SagaInitializationPolicy.php │ ├── SagaInterface.php │ ├── SagaManagerInterface.php │ └── SagaRepositoryInterface.php │ ├── Serializer │ ├── AbstractSerializer.php │ ├── Handlers │ │ └── RamseyUuidHandler.php │ ├── JMSSerializer.php │ ├── MessageSerializer.php │ ├── NullRevisionResolver.php │ ├── RevisionResolverInterface.php │ ├── SerializedDomainEventDataInterface.php │ ├── SerializedObjectInterface.php │ ├── SerializedTypeInterface.php │ ├── SerializerInterface.php │ ├── SimpleSerializedDomainEventData.php │ ├── SimpleSerializedObject.php │ ├── SimpleSerializedType.php │ └── UnknownSerializedTypeException.php │ ├── Test │ ├── FixtureConfigurationInterface.php │ ├── FixtureExecutionException.php │ ├── FixtureParameterResolverFactory.php │ ├── Fixtures.php │ ├── GivenWhenThenTestFixture.php │ ├── GovernorAssertionError.php │ ├── Matchers │ │ ├── EmptyCollectionMatcher.php │ │ ├── EqualFieldsMatcher.php │ │ ├── ExactSequenceMatcher.php │ │ ├── ListMatcher.php │ │ ├── ListWithAllOfMatcher.php │ │ ├── ListWithAnyOfMatcher.php │ │ ├── Matchers.php │ │ ├── NullOrVoidMatcher.php │ │ ├── PayloadMatcher.php │ │ ├── PayloadsMatcher.php │ │ └── SequenceMatcher.php │ ├── Reporter.php │ ├── ResultValidatorImpl.php │ ├── ResultValidatorInterface.php │ ├── Saga │ │ ├── AggregateEventPublisherImpl.php │ │ ├── AnnotatedSagaTestFixture.php │ │ ├── CommandValidator.php │ │ ├── ContinuedGivenStateInterface.php │ │ ├── DescriptionUtils.php │ │ ├── EventValidator.php │ │ ├── FixtureConfigurationInterface.php │ │ ├── FixtureExecutionResultImpl.php │ │ ├── FixtureExecutionResultInterface.php │ │ ├── FixtureResourceInjector.php │ │ ├── GivenAggregateEventPublisherInterface.php │ │ ├── RepositoryContentValidator.php │ │ ├── WhenAggregateEventPublisherInterface.php │ │ └── WhenStateInterface.php │ ├── TestExecutorInterface.php │ └── Utils │ │ ├── CallbackBehaviorInterface.php │ │ ├── DefaultCallbackBehavior.php │ │ ├── RecordingCommandBus.php │ │ └── RecordingEventBus.php │ └── UnitOfWork │ ├── CurrentUnitOfWork.php │ ├── DefaultUnitOfWork.php │ ├── DefaultUnitOfWorkFactory.php │ ├── NestableUnitOfWork.php │ ├── NullTransactionManager.php │ ├── SaveAggregateCallbackInterface.php │ ├── TransactionManagerInterface.php │ ├── UnitOfWorkFactoryInterface.php │ ├── UnitOfWorkInterface.php │ ├── UnitOfWorkListenerAdapter.php │ ├── UnitOfWorkListenerCollection.php │ ├── UnitOfWorkListenerInterface.php │ └── UoWEventRegistrationCallback.php └── tests ├── Governor └── Tests │ ├── Audit │ ├── AuditingInterceptorTest.php │ ├── CommandMetaDataProviderTest.php │ └── CorrelationAuditDataProviderTest.php │ ├── CommandHandling │ ├── AnnotationCommandTargetResolverTest.php │ ├── AnotherTestCommand.php │ ├── CommandHandlingTest.php │ ├── DefaultInterceptorChainTest.php │ ├── Distributed │ │ ├── AnnotationRoutingStrategyTest.php │ │ ├── DispatchMessageTest.php │ │ ├── RedisCommandBusConnectorTest.php │ │ ├── RedisTemplateTest.php │ │ └── ReplyMessageTest.php │ ├── Gateway │ │ └── DefaultCommandGatewayTest.php │ ├── GenericCommandMessageTest.php │ ├── Interceptors │ │ └── ValidatorInterceptorTest.php │ ├── SimpleCommandBusTest.php │ └── TestCommand.php │ ├── Common │ ├── Property │ │ └── PropertyAccessStrategyTest.php │ └── ReflectionUtilsTest.php │ ├── Correlation │ └── SimpleCorrelationDataProviderTest.php │ ├── Domain │ ├── AbstractAggregateRootTest.php │ ├── DefaultIdentifierFactoryTest.php │ ├── EventContainerTest.php │ ├── GenericDomainEventMessageTest.php │ ├── GenericEventMessageTest.php │ ├── MetaDataTest.php │ └── SimpleDomainEventStreamTest.php │ ├── EventHandling │ ├── Amqp │ │ ├── AmqpTerminalTest.php │ │ ├── DefaultAmqpConsumerConfigurationTest.php │ │ └── NamespaceRoutingKeyResolverTest.php │ ├── Io │ │ └── MessageStreamTest.php │ ├── Listeners │ │ └── AnnotatedEventListenerAdapterTest.php │ ├── Replay │ │ └── ReplayingEventBusTest.php │ └── SimpleEventBusTest.php │ ├── EventSourcing │ ├── AbstractEventSourcedEntityTest.php │ ├── Annotation │ │ └── AbstractAnnotatedAggregateTest.php │ ├── EventSourcingRepositoryTest.php │ └── GenericAggregateFactoryTest.php │ ├── EventStore │ ├── Filesystem │ │ └── FilesystemEventStoreTest.php │ ├── Mongo │ │ ├── Criteria │ │ │ ├── AndTest.php │ │ │ ├── CollectionCriteriaTest.php │ │ │ ├── EqualsTest.php │ │ │ ├── OrTest.php │ │ │ ├── SimpleMongoOperatorTest.php │ │ │ └── StubMongoCriteria.php │ │ └── MongoEventStoreTest.php │ └── Orm │ │ ├── Criteria │ │ └── OrmCriteriaBuilderTest.php │ │ └── OrmEventStoreTest.php │ ├── Repository │ ├── AbstractRepositoryTest.php │ ├── GenericOrmRepositoryTest.php │ ├── LockingRepositoryTest.php │ └── OptimistickLockManagetTest.php │ ├── Saga │ ├── AbstractSagaManagerTest.php │ ├── Annotation │ │ ├── AbstractAnnotatedSagaTest.php │ │ ├── AnnotatedSagaManagerTest.php │ │ └── AssociationValuesImplTest.php │ ├── GenericSagaFactoryTest.php │ └── Repository │ │ ├── Mongo │ │ └── MongoSagaRepositoryTest.php │ │ ├── Orm │ │ └── OrmSagaRepositoryTest.php │ │ └── StubSaga.php │ ├── Serializer │ └── JMSSerializerTest.php │ ├── Stubs │ ├── Dummy1Aggregate.php │ ├── Dummy2Aggregate.php │ ├── StubAggregate.php │ └── StubDomainEvent.php │ ├── Test │ ├── CreateAggregateCommand.php │ ├── DeleteCommand.php │ ├── GenericFixtureTest.php │ ├── IllegalStateChangeCommand.php │ ├── Matchers │ │ ├── EqualFieldsMatcherTest.php │ │ ├── ExactSequenceOfEventsMatcherTest.php │ │ ├── ListWithAllOfMatcherTest.php │ │ ├── ListWithAnyOfMatcherTest.php │ │ ├── NullOrVoidMatcherTest.php │ │ ├── SequenceOfMatchersTest.php │ │ ├── StubEvent.php │ │ ├── StubEvent1.php │ │ ├── StubEvent2.php │ │ ├── StubEvent3.php │ │ ├── StubEvent4.php │ │ └── StubEvent5.php │ ├── MyAggregateDeletedEvent.php │ ├── MyCommandHandler.php │ ├── MyEntity.php │ ├── MyEvent.php │ ├── MyOtherEvent.php │ ├── Saga │ │ ├── AnnotatedSagaTest.php │ │ ├── CommandValidatorTest.php │ │ ├── EventValidatorTest.php │ │ ├── ForceTriggerSagaStartEvent.php │ │ ├── SagaWasTriggeredEvent.php │ │ ├── StubSaga.php │ │ ├── TimerTriggeredEvent.php │ │ ├── TriggerExistingSagaEvent.php │ │ ├── TriggerSagaEndEvent.php │ │ └── TriggerSagaStartEvent.php │ ├── StandardAggregate.php │ ├── StrangeCommand.php │ └── TestCommand.php │ └── UnitOfWork │ ├── CurrentUnitOfWorkTest.php │ └── DefaultUnitOfWorkTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/* 2 | .idea/ 3 | /composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/composer.lock -------------------------------------------------------------------------------- /myconfig.ini: -------------------------------------------------------------------------------- 1 | extension="mongo.so" 2 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/AggregateIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/AggregateIdentifier.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/CommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/CommandHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/EndSaga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/EndSaga.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/EventHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/EventSourcedMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/EventSourcedMember.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/EventSourcingHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/EventSourcingHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/Inject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/Inject.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/MetaData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/MetaData.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/Order.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/Resolve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/Resolve.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/SagaEventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/SagaEventHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/StartSaga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/StartSaga.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/TargetAggregateIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/TargetAggregateIdentifier.php -------------------------------------------------------------------------------- /src/Governor/Framework/Annotations/TargetAggregateVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Annotations/TargetAggregateVersion.php -------------------------------------------------------------------------------- /src/Governor/Framework/Audit/AuditDataProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Audit/AuditDataProviderInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Audit/AuditLoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Audit/AuditLoggerInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Audit/AuditingInterceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Audit/AuditingInterceptor.php -------------------------------------------------------------------------------- /src/Governor/Framework/Audit/AuditingUnitOfWorkListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Audit/AuditingUnitOfWorkListener.php -------------------------------------------------------------------------------- /src/Governor/Framework/Audit/CommandMetaDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Audit/CommandMetaDataProvider.php -------------------------------------------------------------------------------- /src/Governor/Framework/Audit/CorrelationAuditDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Audit/CorrelationAuditDataProvider.php -------------------------------------------------------------------------------- /src/Governor/Framework/Audit/EmptyDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Audit/EmptyDataProvider.php -------------------------------------------------------------------------------- /src/Governor/Framework/Audit/NullAuditLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Audit/NullAuditLogger.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/AnnotationCommandTargetResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/AnnotationCommandTargetResolver.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Callbacks/ClosureCommandCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Callbacks/ClosureCommandCallback.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Callbacks/NoOpCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Callbacks/NoOpCallback.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Callbacks/ResultCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Callbacks/ResultCallback.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/CommandBusInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/CommandBusInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/CommandCallbackInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/CommandCallbackInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/CommandDispatchInterceptorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/CommandDispatchInterceptorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/CommandHandlerInterceptorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/CommandHandlerInterceptorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/CommandHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/CommandHandlerInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/CommandMessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/CommandMessageInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/CommandTargetResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/CommandTargetResolverInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/DefaultInterceptorChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/DefaultInterceptorChain.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/AbstractRoutingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/AbstractRoutingStrategy.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/AnnotationRoutingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/AnnotationRoutingStrategy.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/CommandBusConnectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/CommandBusConnectorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/CommandDispatchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/CommandDispatchException.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/CommandReceiver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/CommandReceiver.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/CommandTimeoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/CommandTimeoutException.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/DispatchMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/DispatchMessage.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/DistributedCommandBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/DistributedCommandBus.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/MetaDataRoutingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/MetaDataRoutingStrategy.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/RedisCommandBusConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/RedisCommandBusConnector.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/RedisTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/RedisTemplate.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/ReplyMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/ReplyMessage.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/RoutingStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/RoutingStrategyInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Distributed/UnresolvedRoutingKeyPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Distributed/UnresolvedRoutingKeyPolicy.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Gateway/AbstractCommandGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Gateway/AbstractCommandGateway.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Gateway/CommandGatewayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Gateway/CommandGatewayInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Gateway/DefaultCommandGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Gateway/DefaultCommandGateway.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/GenericCommandMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/GenericCommandMessage.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Handlers/AbstractAnnotatedCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Handlers/AbstractAnnotatedCommandHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Handlers/AnnotatedAggregateCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Handlers/AnnotatedAggregateCommandHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Handlers/AnnotatedCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Handlers/AnnotatedCommandHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/InterceptorChainInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/InterceptorChainInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Interceptors/ValidatorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Interceptors/ValidatorException.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/Interceptors/ValidatorInterceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/Interceptors/ValidatorInterceptor.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/NoHandlerForCommandException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/NoHandlerForCommandException.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/SimpleCommandBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/SimpleCommandBus.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/StructuralCommandValidationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/StructuralCommandValidationFailedException.php -------------------------------------------------------------------------------- /src/Governor/Framework/CommandHandling/VersionedAggregateIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/CommandHandling/VersionedAggregateIdentifier.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/AbstractParameterResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/AbstractParameterResolverFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/AnnotatedMetaDataParameterResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/AnnotatedMetaDataParameterResolver.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Annotation/AnnotatedHandlerDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Annotation/AnnotatedHandlerDefinition.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Annotation/AnnotationReaderFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Annotation/AnnotationReaderFactoryInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Annotation/FileCacheAnnotationReaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Annotation/FileCacheAnnotationReaderFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Annotation/HandlerDefinitionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Annotation/HandlerDefinitionInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Annotation/MethodMessageHandlerInspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Annotation/MethodMessageHandlerInspector.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Annotation/SimpleAnnotationReaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Annotation/SimpleAnnotationReaderFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/ContainerParameterResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/ContainerParameterResolverFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/DefaultParameterResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/DefaultParameterResolverFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/DelegatingParameterResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/DelegatingParameterResolverFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/FixedValueParameterResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/FixedValueParameterResolver.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/IdentifierValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/IdentifierValidator.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Logging/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Logging/NullLogger.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/MetaDataParameterResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/MetaDataParameterResolver.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Mongo/AuthenticatingMongoTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Mongo/AuthenticatingMongoTemplate.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/ParameterResolverFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/ParameterResolverFactoryInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/ParameterResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/ParameterResolverInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/PayloadParameterResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/PayloadParameterResolver.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Property/PropertyAccessStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Property/PropertyAccessStrategy.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Property/PropertyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Property/PropertyInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Property/ReflectionMethodImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Property/ReflectionMethodImpl.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Property/ReflectionPropertyAccessStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Property/ReflectionPropertyAccessStrategy.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/Property/ReflectionPropertyImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/Property/ReflectionPropertyImpl.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/ReceiverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/ReceiverInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Common/ReflectionUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Common/ReflectionUtils.php -------------------------------------------------------------------------------- /src/Governor/Framework/Correlation/CorrelationDataHolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Correlation/CorrelationDataHolder.php -------------------------------------------------------------------------------- /src/Governor/Framework/Correlation/CorrelationDataProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Correlation/CorrelationDataProviderInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Correlation/MultiCorrelationDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Correlation/MultiCorrelationDataProvider.php -------------------------------------------------------------------------------- /src/Governor/Framework/Correlation/SimpleCorrelationDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Correlation/SimpleCorrelationDataProvider.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/AbstractAggregateRoot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/AbstractAggregateRoot.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/AggregateRootIdNotInitialized.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/AggregateRootIdNotInitialized.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/AggregateRootInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/AggregateRootInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/DefaultIdentifierFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/DefaultIdentifierFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/DomainEventMessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/DomainEventMessageInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/DomainEventStreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/DomainEventStreamInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/EventContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/EventContainer.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/EventMessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/EventMessageInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/EventRegistrationCallbackInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/EventRegistrationCallbackInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/GenericDomainEventMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/GenericDomainEventMessage.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/GenericEventMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/GenericEventMessage.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/GenericMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/GenericMessage.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/IdentifierFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/IdentifierFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/MessageInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/MetaData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/MetaData.php -------------------------------------------------------------------------------- /src/Governor/Framework/Domain/SimpleDomainEventStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Domain/SimpleDomainEventStream.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/AmqpConsumerConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/AmqpConsumerConfigurationInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/AmqpMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/AmqpMessage.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/AmqpMessageConverterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/AmqpMessageConverterInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/AmqpTerminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/AmqpTerminal.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/ChannelTransactionUnitOfWorkListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/ChannelTransactionUnitOfWorkListener.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/DefaultAmqpConsumerConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/DefaultAmqpConsumerConfiguration.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/DefaultAmqpMessageConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/DefaultAmqpMessageConverter.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/EventPublicationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/EventPublicationFailedException.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/NamespaceRoutingKeyResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/NamespaceRoutingKeyResolver.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Amqp/RoutingKeyResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Amqp/RoutingKeyResolverInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/AnnotationOrderResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/AnnotationOrderResolver.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/EventBusInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/EventBusInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/EventListenerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/EventListenerInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/EventListenerProxyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/EventListenerProxyInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/EventListenerRegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/EventListenerRegistryInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/EventListenerSubscriptionFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/EventListenerSubscriptionFailedException.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/EventProcessingMonitorCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/EventProcessingMonitorCollection.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/EventProcessingMonitorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/EventProcessingMonitorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/EventProcessingMonitorSupportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/EventProcessingMonitorSupportInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/InMemoryEventListenerRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/InMemoryEventListenerRegistry.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Io/EventMessageReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Io/EventMessageReader.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Io/EventMessageWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Io/EventMessageWriter.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Listeners/AnnotatedEventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Listeners/AnnotatedEventListener.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Listeners/AnnotatedEventListenerAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Listeners/AnnotatedEventListenerAdapter.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/OrderResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/OrderResolverInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Replay/DiscardingIncomingMessageHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Replay/DiscardingIncomingMessageHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Replay/EventProcessingListeners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Replay/EventProcessingListeners.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Replay/IncomingMessageHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Replay/IncomingMessageHandlerInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Replay/ReplayAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Replay/ReplayAwareInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Replay/ReplayingEventBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Replay/ReplayingEventBus.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/Replay/ReplayingEventVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/Replay/ReplayingEventVisitor.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/SimpleEventBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/SimpleEventBus.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventHandling/TerminalInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventHandling/TerminalInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/AbstractAggregateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/AbstractAggregateFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/AbstractEventSourcedAggregateRoot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/AbstractEventSourcedAggregateRoot.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/AbstractEventSourcedEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/AbstractEventSourcedEntity.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/AbstractSnapshotter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/AbstractSnapshotter.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/AggregateDeletedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/AggregateDeletedException.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/AggregateFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/AggregateFactoryInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/Annotation/AbstractAnnotatedAggregateRoot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/Annotation/AbstractAnnotatedAggregateRoot.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/Annotation/AbstractAnnotatedEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/Annotation/AbstractAnnotatedEntity.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/Annotation/AnnotationAggregateInspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/Annotation/AnnotationAggregateInspector.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/CapturingEventStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/CapturingEventStream.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/ConflictResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/ConflictResolverInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/ConflictResolvingListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/ConflictResolvingListener.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/EventSourcedAggregateRootInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/EventSourcedAggregateRootInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/EventSourcedEntityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/EventSourcedEntityInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/EventSourcingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/EventSourcingRepository.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/EventStreamDecoratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/EventStreamDecoratorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/GenericAggregateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/GenericAggregateFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/HybridDoctrineRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/HybridDoctrineRepository.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/IncompatibleAggregateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/IncompatibleAggregateException.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventSourcing/SnapshotterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventSourcing/SnapshotterInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/EventStoreException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/EventStoreException.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/EventStoreInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/EventStoreInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/EventStreamNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/EventStreamNotFoundException.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/EventVisitorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/EventVisitorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Filesystem/EventFileResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Filesystem/EventFileResolverInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Filesystem/FilesystemDomainEventStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Filesystem/FilesystemDomainEventStream.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Filesystem/FilesystemEventMessageReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Filesystem/FilesystemEventMessageReader.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Filesystem/FilesystemEventMessageWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Filesystem/FilesystemEventMessageWriter.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Filesystem/FilesystemEventStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Filesystem/FilesystemEventStore.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Filesystem/FilesystemSnapshotEventReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Filesystem/FilesystemSnapshotEventReader.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Filesystem/FilesystemSnapshotEventWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Filesystem/FilesystemSnapshotEventWriter.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Filesystem/SimpleEventFileResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Filesystem/SimpleEventFileResolver.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Filesystem/SnapshotFilesystemDomainEventStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Filesystem/SnapshotFilesystemDomainEventStream.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Management/CriteriaBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Management/CriteriaBuilderInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Management/CriteriaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Management/CriteriaInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Management/EventStoreManagementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Management/EventStoreManagementInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Management/PropertyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Management/PropertyInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/Criteria/AndX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/Criteria/AndX.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/Criteria/CollectionCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/Criteria/CollectionCriteria.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/Criteria/Equals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/Criteria/Equals.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/Criteria/MongoCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/Criteria/MongoCriteria.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/Criteria/MongoCriteriaBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/Criteria/MongoCriteriaBuilder.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/Criteria/MongoProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/Criteria/MongoProperty.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/Criteria/OrX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/Criteria/OrX.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/Criteria/SimpleMongoOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/Criteria/SimpleMongoOperator.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/CursorBackedDomainEventStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/CursorBackedDomainEventStream.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/DefaultMongoTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/DefaultMongoTemplate.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/DocumentPerEventStorageStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/DocumentPerEventStorageStrategy.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/EventEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/EventEntry.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/MongoEventStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/MongoEventStore.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/MongoTemplateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/MongoTemplateInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Mongo/StorageStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Mongo/StorageStrategyInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/AbstractEventEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/AbstractEventEntry.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/BatchingAggregateStreamIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/BatchingAggregateStreamIterator.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/BatchingIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/BatchingIterator.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/Criteria/BinaryOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/Criteria/BinaryOperator.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/Criteria/CollectionOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/Criteria/CollectionOperator.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/Criteria/Equals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/Criteria/Equals.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/Criteria/NotEquals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/Criteria/NotEquals.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/Criteria/OrmCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/Criteria/OrmCriteria.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/Criteria/OrmCriteriaBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/Criteria/OrmCriteriaBuilder.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/Criteria/OrmProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/Criteria/OrmProperty.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/Criteria/ParameterRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/Criteria/ParameterRegistry.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/Criteria/SimpleOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/Criteria/SimpleOperator.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/DefaultEventEntryStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/DefaultEventEntryStore.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/DomainEventEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/DomainEventEntry.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/EventEntryStoreInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/EventEntryStoreInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/OrmDomainEventStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/OrmDomainEventStream.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/OrmEventStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/OrmEventStore.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/SimpleSerializedDomainEventData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/SimpleSerializedDomainEventData.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/Orm/SnapshotEventEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/Orm/SnapshotEventEntry.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/PartialEventStreamSupportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/PartialEventStreamSupportInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/EventStore/SnapshotEventStoreInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/EventStore/SnapshotEventStoreInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/AbstractRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/AbstractRepository.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/AggregateNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/AggregateNotFoundException.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/ConcurrencyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/ConcurrencyException.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/ConflictingAggregateVersionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/ConflictingAggregateVersionException.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/ConflictingModificationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/ConflictingModificationException.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/GenericOrmRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/GenericOrmRepository.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/LockManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/LockManagerInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/LockingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/LockingRepository.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/NullLockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/NullLockManager.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/OptimisticLockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/OptimisticLockManager.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/RepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/RepositoryInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Repository/SimpleSaveAggregateCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Repository/SimpleSaveAggregateCallback.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/AbstractSagaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/AbstractSagaManager.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Annotation/AbstractAnnotatedSaga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Annotation/AbstractAnnotatedSaga.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Annotation/AnnotatedSagaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Annotation/AnnotatedSagaManager.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Annotation/AssociationValuesImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Annotation/AssociationValuesImpl.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Annotation/SagaMethodMessageHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Annotation/SagaMethodMessageHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Annotation/SagaMethodMessageHandlerInspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Annotation/SagaMethodMessageHandlerInspector.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/AssociationValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/AssociationValue.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/AssociationValueResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/AssociationValueResolverInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/AssociationValuesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/AssociationValuesInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/ContainerAwareResourceInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/ContainerAwareResourceInjector.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/GenericSagaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/GenericSagaFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/NullResourceInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/NullResourceInjector.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/AbstractSagaRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/AbstractSagaRepository.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/Memory/InMemorySagaRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/Memory/InMemorySagaRepository.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/Mongo/DefaultMongoTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/Mongo/DefaultMongoTemplate.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/Mongo/MongoSagaRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/Mongo/MongoSagaRepository.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/Mongo/MongoTemplateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/Mongo/MongoTemplateInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/Mongo/SagaEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/Mongo/SagaEntry.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/Orm/AssociationValueEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/Orm/AssociationValueEntry.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/Orm/OrmSagaRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/Orm/OrmSagaRepository.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/Orm/SagaEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/Orm/SagaEntry.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/Repository/Orm/SerializedSaga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/Repository/Orm/SerializedSaga.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/ResourceInjectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/ResourceInjectorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/SagaCreationPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/SagaCreationPolicy.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/SagaFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/SagaFactoryInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/SagaInitializationPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/SagaInitializationPolicy.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/SagaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/SagaInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/SagaManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/SagaManagerInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Saga/SagaRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Saga/SagaRepositoryInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/AbstractSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/AbstractSerializer.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/Handlers/RamseyUuidHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/Handlers/RamseyUuidHandler.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/JMSSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/JMSSerializer.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/MessageSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/MessageSerializer.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/NullRevisionResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/NullRevisionResolver.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/RevisionResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/RevisionResolverInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/SerializedDomainEventDataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/SerializedDomainEventDataInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/SerializedObjectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/SerializedObjectInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/SerializedTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/SerializedTypeInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/SerializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/SerializerInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/SimpleSerializedDomainEventData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/SimpleSerializedDomainEventData.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/SimpleSerializedObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/SimpleSerializedObject.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/SimpleSerializedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/SimpleSerializedType.php -------------------------------------------------------------------------------- /src/Governor/Framework/Serializer/UnknownSerializedTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Serializer/UnknownSerializedTypeException.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/FixtureConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/FixtureConfigurationInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/FixtureExecutionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/FixtureExecutionException.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/FixtureParameterResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/FixtureParameterResolverFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Fixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Fixtures.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/GivenWhenThenTestFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/GivenWhenThenTestFixture.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/GovernorAssertionError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/GovernorAssertionError.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/EmptyCollectionMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/EmptyCollectionMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/EqualFieldsMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/EqualFieldsMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/ExactSequenceMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/ExactSequenceMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/ListMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/ListMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/ListWithAllOfMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/ListWithAllOfMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/ListWithAnyOfMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/ListWithAnyOfMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/Matchers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/Matchers.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/NullOrVoidMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/NullOrVoidMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/PayloadMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/PayloadMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/PayloadsMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/PayloadsMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Matchers/SequenceMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Matchers/SequenceMatcher.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Reporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Reporter.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/ResultValidatorImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/ResultValidatorImpl.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/ResultValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/ResultValidatorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/AggregateEventPublisherImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/AggregateEventPublisherImpl.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/AnnotatedSagaTestFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/AnnotatedSagaTestFixture.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/CommandValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/CommandValidator.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/ContinuedGivenStateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/ContinuedGivenStateInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/DescriptionUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/DescriptionUtils.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/EventValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/EventValidator.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/FixtureConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/FixtureConfigurationInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/FixtureExecutionResultImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/FixtureExecutionResultImpl.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/FixtureExecutionResultInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/FixtureExecutionResultInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/FixtureResourceInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/FixtureResourceInjector.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/GivenAggregateEventPublisherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/GivenAggregateEventPublisherInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/RepositoryContentValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/RepositoryContentValidator.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/WhenAggregateEventPublisherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/WhenAggregateEventPublisherInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Saga/WhenStateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Saga/WhenStateInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/TestExecutorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/TestExecutorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Utils/CallbackBehaviorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Utils/CallbackBehaviorInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Utils/DefaultCallbackBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Utils/DefaultCallbackBehavior.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Utils/RecordingCommandBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Utils/RecordingCommandBus.php -------------------------------------------------------------------------------- /src/Governor/Framework/Test/Utils/RecordingEventBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/Test/Utils/RecordingEventBus.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/CurrentUnitOfWork.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/CurrentUnitOfWork.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/DefaultUnitOfWork.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/DefaultUnitOfWork.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/DefaultUnitOfWorkFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/DefaultUnitOfWorkFactory.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/NestableUnitOfWork.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/NestableUnitOfWork.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/NullTransactionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/NullTransactionManager.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/SaveAggregateCallbackInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/SaveAggregateCallbackInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/TransactionManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/TransactionManagerInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/UnitOfWorkFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/UnitOfWorkFactoryInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/UnitOfWorkInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/UnitOfWorkInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/UnitOfWorkListenerAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/UnitOfWorkListenerAdapter.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/UnitOfWorkListenerCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/UnitOfWorkListenerCollection.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/UnitOfWorkListenerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/UnitOfWorkListenerInterface.php -------------------------------------------------------------------------------- /src/Governor/Framework/UnitOfWork/UoWEventRegistrationCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/src/Governor/Framework/UnitOfWork/UoWEventRegistrationCallback.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Audit/AuditingInterceptorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Audit/AuditingInterceptorTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Audit/CommandMetaDataProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Audit/CommandMetaDataProviderTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Audit/CorrelationAuditDataProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Audit/CorrelationAuditDataProviderTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/AnnotationCommandTargetResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/AnnotationCommandTargetResolverTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/AnotherTestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/AnotherTestCommand.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/CommandHandlingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/CommandHandlingTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/DefaultInterceptorChainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/DefaultInterceptorChainTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/Distributed/AnnotationRoutingStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/Distributed/AnnotationRoutingStrategyTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/Distributed/DispatchMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/Distributed/DispatchMessageTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/Distributed/RedisCommandBusConnectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/Distributed/RedisCommandBusConnectorTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/Distributed/RedisTemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/Distributed/RedisTemplateTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/Distributed/ReplyMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/Distributed/ReplyMessageTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/Gateway/DefaultCommandGatewayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/Gateway/DefaultCommandGatewayTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/GenericCommandMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/GenericCommandMessageTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/Interceptors/ValidatorInterceptorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/Interceptors/ValidatorInterceptorTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/SimpleCommandBusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/SimpleCommandBusTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/CommandHandling/TestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/CommandHandling/TestCommand.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Common/Property/PropertyAccessStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Common/Property/PropertyAccessStrategyTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Common/ReflectionUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Common/ReflectionUtilsTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Correlation/SimpleCorrelationDataProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Correlation/SimpleCorrelationDataProviderTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Domain/AbstractAggregateRootTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Domain/AbstractAggregateRootTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Domain/DefaultIdentifierFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Domain/DefaultIdentifierFactoryTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Domain/EventContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Domain/EventContainerTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Domain/GenericDomainEventMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Domain/GenericDomainEventMessageTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Domain/GenericEventMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Domain/GenericEventMessageTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Domain/MetaDataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Domain/MetaDataTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Domain/SimpleDomainEventStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Domain/SimpleDomainEventStreamTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventHandling/Amqp/AmqpTerminalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventHandling/Amqp/AmqpTerminalTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventHandling/Amqp/DefaultAmqpConsumerConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventHandling/Amqp/DefaultAmqpConsumerConfigurationTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventHandling/Amqp/NamespaceRoutingKeyResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventHandling/Amqp/NamespaceRoutingKeyResolverTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventHandling/Io/MessageStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventHandling/Io/MessageStreamTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventHandling/Listeners/AnnotatedEventListenerAdapterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventHandling/Listeners/AnnotatedEventListenerAdapterTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventHandling/Replay/ReplayingEventBusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventHandling/Replay/ReplayingEventBusTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventHandling/SimpleEventBusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventHandling/SimpleEventBusTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventSourcing/AbstractEventSourcedEntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventSourcing/AbstractEventSourcedEntityTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventSourcing/Annotation/AbstractAnnotatedAggregateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventSourcing/Annotation/AbstractAnnotatedAggregateTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventSourcing/EventSourcingRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventSourcing/EventSourcingRepositoryTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventSourcing/GenericAggregateFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventSourcing/GenericAggregateFactoryTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Filesystem/FilesystemEventStoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Filesystem/FilesystemEventStoreTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Mongo/Criteria/AndTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Mongo/Criteria/AndTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Mongo/Criteria/CollectionCriteriaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Mongo/Criteria/CollectionCriteriaTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Mongo/Criteria/EqualsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Mongo/Criteria/EqualsTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Mongo/Criteria/OrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Mongo/Criteria/OrTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Mongo/Criteria/SimpleMongoOperatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Mongo/Criteria/SimpleMongoOperatorTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Mongo/Criteria/StubMongoCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Mongo/Criteria/StubMongoCriteria.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Mongo/MongoEventStoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Mongo/MongoEventStoreTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Orm/Criteria/OrmCriteriaBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Orm/Criteria/OrmCriteriaBuilderTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/EventStore/Orm/OrmEventStoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/EventStore/Orm/OrmEventStoreTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Repository/AbstractRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Repository/AbstractRepositoryTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Repository/GenericOrmRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Repository/GenericOrmRepositoryTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Repository/LockingRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Repository/LockingRepositoryTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Repository/OptimistickLockManagetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Repository/OptimistickLockManagetTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Saga/AbstractSagaManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Saga/AbstractSagaManagerTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Saga/Annotation/AbstractAnnotatedSagaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Saga/Annotation/AbstractAnnotatedSagaTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Saga/Annotation/AnnotatedSagaManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Saga/Annotation/AnnotatedSagaManagerTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Saga/Annotation/AssociationValuesImplTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Saga/Annotation/AssociationValuesImplTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Saga/GenericSagaFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Saga/GenericSagaFactoryTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Saga/Repository/Mongo/MongoSagaRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Saga/Repository/Mongo/MongoSagaRepositoryTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Saga/Repository/Orm/OrmSagaRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Saga/Repository/Orm/OrmSagaRepositoryTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Saga/Repository/StubSaga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Saga/Repository/StubSaga.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Serializer/JMSSerializerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Serializer/JMSSerializerTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Stubs/Dummy1Aggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Stubs/Dummy1Aggregate.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Stubs/Dummy2Aggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Stubs/Dummy2Aggregate.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Stubs/StubAggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Stubs/StubAggregate.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Stubs/StubDomainEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Stubs/StubDomainEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/CreateAggregateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/CreateAggregateCommand.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/DeleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/DeleteCommand.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/GenericFixtureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/GenericFixtureTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/IllegalStateChangeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/IllegalStateChangeCommand.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/EqualFieldsMatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/EqualFieldsMatcherTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/ExactSequenceOfEventsMatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/ExactSequenceOfEventsMatcherTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/ListWithAllOfMatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/ListWithAllOfMatcherTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/ListWithAnyOfMatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/ListWithAnyOfMatcherTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/NullOrVoidMatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/NullOrVoidMatcherTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/SequenceOfMatchersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/SequenceOfMatchersTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/StubEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/StubEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/StubEvent1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/StubEvent1.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/StubEvent2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/StubEvent2.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/StubEvent3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/StubEvent3.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/StubEvent4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/StubEvent4.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Matchers/StubEvent5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Matchers/StubEvent5.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/MyAggregateDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/MyAggregateDeletedEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/MyCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/MyCommandHandler.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/MyEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/MyEntity.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/MyEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/MyEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/MyOtherEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/MyOtherEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/AnnotatedSagaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/AnnotatedSagaTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/CommandValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/CommandValidatorTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/EventValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/EventValidatorTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/ForceTriggerSagaStartEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/ForceTriggerSagaStartEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/SagaWasTriggeredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/SagaWasTriggeredEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/StubSaga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/StubSaga.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/TimerTriggeredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/TimerTriggeredEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/TriggerExistingSagaEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/TriggerExistingSagaEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/TriggerSagaEndEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/TriggerSagaEndEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/Saga/TriggerSagaStartEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/Saga/TriggerSagaStartEvent.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/StandardAggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/StandardAggregate.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/StrangeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/StrangeCommand.php -------------------------------------------------------------------------------- /tests/Governor/Tests/Test/TestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/Test/TestCommand.php -------------------------------------------------------------------------------- /tests/Governor/Tests/UnitOfWork/CurrentUnitOfWorkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/UnitOfWork/CurrentUnitOfWorkTest.php -------------------------------------------------------------------------------- /tests/Governor/Tests/UnitOfWork/DefaultUnitOfWorkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/Governor/Tests/UnitOfWork/DefaultUnitOfWorkTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartGecko/GovernorFramework/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------