From 3bcc058ff9349c82dcab7ef01dfa8434924f9904 Mon Sep 17 00:00:00 2001 From: codeliner Date: Fri, 18 Jan 2019 22:18:23 +0100 Subject: [PATCH 1/2] OopFlavour should only decorate first event --- src/Runtime/OopFlavour.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/Runtime/OopFlavour.php b/src/Runtime/OopFlavour.php index 0848d4a..fa043b4 100644 --- a/src/Runtime/OopFlavour.php +++ b/src/Runtime/OopFlavour.php @@ -73,15 +73,22 @@ public function callAggregateFactory(string $aggregateType, callable $aggregateF $events = $this->port->popRecordedEvents($aggregate); - yield from new MapIterator(new \ArrayIterator($events), function ($event) use ($command, $aggregate, $aggregateType) { + $isFirstEvent = true; + + yield from new MapIterator(new \ArrayIterator($events), function ($event) use ($command, $aggregate, $aggregateType, &$isFirstEvent) { if (null === $event) { return null; } - return $this->functionalFlavour->decorateEvent($event) - ->withMessage(new AggregateAndEventBag($aggregate, $event)) - ->withAddedMetadata('_causation_id', $command->uuid()->toString()) - ->withAddedMetadata('_causation_name', $command->messageName()); + $decoratedEvent = $this->functionalFlavour->decorateEvent($event); + + if ($isFirstEvent) { + $decoratedEvent = $decoratedEvent->withMessage(new AggregateAndEventBag($aggregate, $event)); + $isFirstEvent = false; + } + + return $decoratedEvent->withAddedMetadata('_causation_id', $command->uuid()->toString()) + ->withAddedMetadata('_causation_name', $command->messageName()); }); } From c4a33b60c70a6abd4f70aebd93881baf235358b9 Mon Sep 17 00:00:00 2001 From: codeliner Date: Fri, 18 Jan 2019 22:19:58 +0100 Subject: [PATCH 2/2] It's 2019! --- examples/FunctionalFlavour/Aggregate/Aggregate.php | 2 +- examples/FunctionalFlavour/Aggregate/UserDescription.php | 2 +- examples/FunctionalFlavour/Aggregate/UserState.php | 2 +- examples/FunctionalFlavour/Api/Command.php | 2 +- examples/FunctionalFlavour/Api/Event.php | 2 +- examples/FunctionalFlavour/Api/MessageDescription.php | 2 +- examples/FunctionalFlavour/Api/Query.php | 2 +- examples/FunctionalFlavour/Command/ChangeUsername.php | 2 +- examples/FunctionalFlavour/Command/RegisterUser.php | 2 +- examples/FunctionalFlavour/Event/UserRegistered.php | 2 +- examples/FunctionalFlavour/Event/UserRegistrationFailed.php | 2 +- examples/FunctionalFlavour/Event/UsernameChanged.php | 2 +- examples/FunctionalFlavour/ExampleFunctionalPort.php | 2 +- examples/FunctionalFlavour/ProcessManager/SendWelcomeEmail.php | 2 +- .../FunctionalFlavour/Projector/RegisteredUsersProjector.php | 2 +- examples/FunctionalFlavour/Query/GetUser.php | 2 +- examples/FunctionalFlavour/Query/GetUsers.php | 2 +- examples/FunctionalFlavour/Resolver/GetUserResolver.php | 2 +- examples/FunctionalFlavour/Resolver/GetUsersResolver.php | 2 +- examples/FunctionalFlavour/Util/ApplyPayload.php | 2 +- examples/OopFlavour/Aggregate/User.php | 2 +- examples/OopFlavour/Aggregate/UserDescription.php | 2 +- examples/OopFlavour/ExampleOopPort.php | 2 +- examples/PrototypingFlavour/Aggregate/Aggregate.php | 2 +- examples/PrototypingFlavour/Aggregate/CachableUserFunction.php | 2 +- .../PrototypingFlavour/Aggregate/CacheableUserDescription.php | 2 +- examples/PrototypingFlavour/Aggregate/UserDescription.php | 2 +- examples/PrototypingFlavour/Aggregate/UserState.php | 2 +- examples/PrototypingFlavour/Messaging/Command.php | 2 +- .../PrototypingFlavour/Messaging/CommandWithCustomHandler.php | 2 +- examples/PrototypingFlavour/Messaging/Event.php | 2 +- examples/PrototypingFlavour/Messaging/MessageDescription.php | 2 +- examples/PrototypingFlavour/Messaging/Query.php | 2 +- examples/PrototypingFlavour/ProcessManager/SendWelcomeEmail.php | 2 +- .../PrototypingFlavour/Projector/RegisteredUsersProjector.php | 2 +- examples/PrototypingFlavour/Resolver/GetUserResolver.php | 2 +- examples/PrototypingFlavour/Resolver/GetUsersResolver.php | 2 +- src/Aggregate/AggregateTestHistoryEventEnricher.php | 2 +- src/Aggregate/ClosureAggregateTranslator.php | 2 +- src/Aggregate/ContextProvider.php | 2 +- src/Aggregate/Exception/AggregateNotFound.php | 2 +- src/Aggregate/GenericAggregateRoot.php | 2 +- src/Commanding/CommandPreProcessor.php | 2 +- src/Commanding/CommandProcessor.php | 2 +- src/Commanding/CommandProcessorDescription.php | 2 +- src/Commanding/CommandToProcessorRouter.php | 2 +- src/Commanding/GenericJsonSchemaCommand.php | 2 +- src/Container/ContainerChain.php | 2 +- src/Container/ContextProviderFactory.php | 2 +- src/Container/EventMachineContainer.php | 2 +- src/Container/ReflectionBasedContainer.php | 2 +- src/Container/ServiceNotFound.php | 2 +- src/Container/ServiceRegistry.php | 2 +- src/Container/TestEnvContainer.php | 2 +- src/Data/DataConverter.php | 2 +- src/Data/ImmutableRecord.php | 2 +- src/Data/ImmutableRecordDataConverter.php | 2 +- src/Data/ImmutableRecordLogic.php | 2 +- src/EventMachine.php | 2 +- src/EventMachineDescription.php | 2 +- src/Eventing/EventConverterBusPlugin.php | 2 +- src/Eventing/EventRecorderDescription.php | 2 +- src/Eventing/GenericJsonSchemaEvent.php | 2 +- src/Exception/EventMachineException.php | 2 +- src/Exception/InvalidArgumentException.php | 2 +- src/Exception/InvalidEventFormatException.php | 2 +- src/Exception/MissingAggregateIdentifierException.php | 2 +- src/Exception/NoGeneratorException.php | 2 +- src/Exception/RuntimeException.php | 2 +- src/Exception/Transaction.php | 2 +- src/Exception/TransactionCommitFailed.php | 2 +- src/Exception/TransactionNotStarted.php | 2 +- src/Exception/TransactionRollBackFailed.php | 2 +- src/Http/MessageBox.php | 2 +- src/JsonSchema/AnnotatedType.php | 2 +- src/JsonSchema/JsonSchema.php | 2 +- src/JsonSchema/JsonSchemaAssertion.php | 2 +- src/JsonSchema/JustinRainbowJsonSchemaAssertion.php | 2 +- src/JsonSchema/Type.php | 2 +- src/JsonSchema/Type/ArrayType.php | 2 +- src/JsonSchema/Type/BoolType.php | 2 +- src/JsonSchema/Type/EmailType.php | 2 +- src/JsonSchema/Type/EnumType.php | 2 +- src/JsonSchema/Type/FloatType.php | 2 +- src/JsonSchema/Type/HasAnnotations.php | 2 +- src/JsonSchema/Type/IntType.php | 2 +- src/JsonSchema/Type/NullableType.php | 2 +- src/JsonSchema/Type/ObjectType.php | 2 +- src/JsonSchema/Type/StringType.php | 2 +- src/JsonSchema/Type/TypeRef.php | 2 +- src/JsonSchema/Type/UuidType.php | 2 +- src/Messaging/GenericJsonSchemaMessage.php | 2 +- src/Messaging/GenericJsonSchemaMessageFactory.php | 2 +- src/Messaging/Message.php | 2 +- src/Messaging/MessageBag.php | 2 +- src/Messaging/MessageDispatcher.php | 2 +- src/Messaging/MessageFactory.php | 2 +- src/Messaging/MessageFactoryAware.php | 2 +- src/Messaging/MessageProducer.php | 2 +- src/Persistence/AggregateStateStore.php | 2 +- src/Persistence/DeletableState.php | 2 +- src/Persistence/DocumentStore.php | 2 +- src/Persistence/DocumentStore/FieldIndex.php | 2 +- src/Persistence/DocumentStore/Filter/AndFilter.php | 2 +- src/Persistence/DocumentStore/Filter/AnyFilter.php | 2 +- src/Persistence/DocumentStore/Filter/EqFilter.php | 2 +- src/Persistence/DocumentStore/Filter/ExistsFilter.php | 2 +- src/Persistence/DocumentStore/Filter/Filter.php | 2 +- src/Persistence/DocumentStore/Filter/GtFilter.php | 2 +- src/Persistence/DocumentStore/Filter/GteFilter.php | 2 +- src/Persistence/DocumentStore/Filter/InArrayFilter.php | 2 +- src/Persistence/DocumentStore/Filter/LikeFilter.php | 2 +- src/Persistence/DocumentStore/Filter/LtFilter.php | 2 +- src/Persistence/DocumentStore/Filter/LteFilter.php | 2 +- src/Persistence/DocumentStore/Filter/NotFilter.php | 2 +- src/Persistence/DocumentStore/Filter/OrFilter.php | 2 +- src/Persistence/DocumentStore/InMemoryDocumentStore.php | 2 +- src/Persistence/DocumentStore/Index.php | 2 +- src/Persistence/DocumentStore/MultiFieldIndex.php | 2 +- src/Persistence/DocumentStore/OrderBy/AndOrder.php | 2 +- src/Persistence/DocumentStore/OrderBy/Asc.php | 2 +- src/Persistence/DocumentStore/OrderBy/Desc.php | 2 +- src/Persistence/DocumentStore/OrderBy/OrderBy.php | 2 +- src/Persistence/InMemoryConnection.php | 2 +- src/Persistence/InMemoryEventStore.php | 2 +- src/Persistence/Stream.php | 2 +- src/Persistence/TransactionManager.php | 2 +- src/Persistence/TransactionalConnection.php | 2 +- src/Projecting/AggregateProjector.php | 2 +- src/Projecting/CustomEventProjector.php | 2 +- src/Projecting/FlavourAware.php | 2 +- src/Projecting/InMemory/InMemoryEventStoreProjector.php | 2 +- src/Projecting/InMemory/InMemoryEventStoreQuery.php | 2 +- .../InMemory/InMemoryEventStoreReadModelProjector.php | 2 +- src/Projecting/InMemory/InMemoryProjectionManager.php | 2 +- src/Projecting/ProjectionDescription.php | 2 +- src/Projecting/ProjectionRunner.php | 2 +- src/Projecting/Projector.php | 2 +- src/Projecting/ReadModel.php | 2 +- src/Projecting/ReadModelProxy.php | 2 +- src/Querying/AsyncResolver.php | 2 +- src/Querying/GenericJsonSchemaQuery.php | 2 +- src/Querying/QueryConverterBusPlugin.php | 2 +- src/Querying/QueryDescription.php | 2 +- src/Querying/SyncResolver.php | 2 +- src/Runtime/Flavour.php | 2 +- src/Runtime/Functional/Port.php | 2 +- src/Runtime/FunctionalFlavour.php | 2 +- src/Runtime/Oop/AggregateAndEventBag.php | 2 +- src/Runtime/Oop/FlavourHint.php | 2 +- src/Runtime/Oop/Port.php | 2 +- src/Runtime/OopFlavour.php | 2 +- src/Runtime/PrototypingFlavour.php | 2 +- src/Util/DetermineVariableType.php | 2 +- src/Util/MapIterator.php | 2 +- tests/Aggregate/GenericAggregateRootTest.php | 2 +- tests/Aggregate/Stub/ContextAwareAggregate.php | 2 +- tests/Aggregate/Stub/ContextAwareAggregateDescription.php | 2 +- tests/BasicTestCase.php | 2 +- tests/Commanding/CommandProcessorTest.php | 2 +- tests/Commanding/CommandToProcessorRouterTest.php | 2 +- tests/Container/ReflectionBasedContainerTest.php | 2 +- tests/Data/ImmutableRecordTest.php | 2 +- tests/Data/Stubs/TestAmountVO.php | 2 +- tests/Data/Stubs/TestBlacklistIdentityCollectionVO.php | 2 +- tests/Data/Stubs/TestBlacklistVO.php | 2 +- tests/Data/Stubs/TestBuildingVO.php | 2 +- tests/Data/Stubs/TestCommentVO.php | 2 +- tests/Data/Stubs/TestCurrencyVO.php | 2 +- tests/Data/Stubs/TestDefaultPrice.php | 2 +- tests/Data/Stubs/TestIdentityCollectionVO.php | 2 +- tests/Data/Stubs/TestIdentityVO.php | 2 +- tests/Data/Stubs/TestProduct.php | 2 +- tests/Data/Stubs/TestProductActiveFlagVO.php | 2 +- tests/Data/Stubs/TestProductIdVO.php | 2 +- tests/Data/Stubs/TestProductNameVO.php | 2 +- tests/Data/Stubs/TestProductPrice.php | 2 +- tests/Data/Stubs/TestProductPriceVO.php | 2 +- tests/Data/Stubs/TestProductVO.php | 2 +- tests/Data/Stubs/TestUserVO.php | 2 +- tests/EventMachineFunctionalFlavourTest.php | 2 +- tests/EventMachineOopFlavourTest.php | 2 +- tests/EventMachinePrototypingFlavourTest.php | 2 +- tests/EventMachineTestAbstract.php | 2 +- tests/EventMachineTestModeTest.php | 2 +- tests/Http/MessageBoxTest.php | 2 +- tests/JsonSchema/Type/FloatTypeTest.php | 2 +- tests/JsonSchema/Type/IntTypeTest.php | 2 +- tests/JsonSchema/Type/ObjectTypeTest.php | 2 +- tests/Messaging/GenericJsonSchemaMessageFactoryTest.php | 2 +- tests/Messaging/GenericJsonSchemaMessageTest.php | 2 +- tests/Persistence/DocumentStore/FieldIndexTest.php | 2 +- tests/Persistence/DocumentStore/Filter/AndFilterTest.php | 2 +- tests/Persistence/DocumentStore/Filter/EqFilterTest.php | 2 +- tests/Persistence/DocumentStore/Filter/ExistsFilterTest.php | 2 +- .../Persistence/DocumentStore/Filter/FilterTestHelperTrait.php | 2 +- tests/Persistence/DocumentStore/Filter/GtFilterTest.php | 2 +- tests/Persistence/DocumentStore/Filter/GteFilterTest.php | 2 +- tests/Persistence/DocumentStore/Filter/InArrayFilterTest.php | 2 +- tests/Persistence/DocumentStore/Filter/LikeFilterTest.php | 2 +- tests/Persistence/DocumentStore/Filter/LtFilterTest.php | 2 +- tests/Persistence/DocumentStore/Filter/LteFilterTest.php | 2 +- tests/Persistence/DocumentStore/Filter/NotFilterTest.php | 2 +- tests/Persistence/DocumentStore/Filter/OrFilterTest.php | 2 +- tests/Persistence/DocumentStore/InMemoryDocumentStoreTest.php | 2 +- tests/Persistence/DocumentStore/MultiFieldIndexTest.php | 2 +- tests/Persistence/InMemoryConnectionTest.php | 2 +- tests/Persistence/InMemoryEventStoreTest.php | 2 +- tests/Persistence/TransactionManagerTest.php | 2 +- tests/Projecting/InMemory/InMemoryEventStoreProjectorTest.php | 2 +- tests/Projecting/InMemory/InMemoryEventStoreQueryTest.php | 2 +- .../InMemory/InMemoryEventStoreReadModelProjectorTest.php | 2 +- tests/Projecting/InMemory/InMemoryProjectionManagerTest.php | 2 +- tests/Projecting/InMemory/isolated-long-running-projection.php | 2 +- tests/Projecting/InMemory/isolated-long-running-query.php | 2 +- .../InMemory/isolated-long-running-read-model-projection.php | 2 +- tests/Projecting/InMemory/isolated-projection.php | 2 +- tests/Projecting/InMemory/isolated-read-model-projection.php | 2 +- 218 files changed, 218 insertions(+), 218 deletions(-) diff --git a/examples/FunctionalFlavour/Aggregate/Aggregate.php b/examples/FunctionalFlavour/Aggregate/Aggregate.php index 9835553..cf865d0 100644 --- a/examples/FunctionalFlavour/Aggregate/Aggregate.php +++ b/examples/FunctionalFlavour/Aggregate/Aggregate.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Aggregate/UserDescription.php b/examples/FunctionalFlavour/Aggregate/UserDescription.php index 24b6d8d..127ceed 100644 --- a/examples/FunctionalFlavour/Aggregate/UserDescription.php +++ b/examples/FunctionalFlavour/Aggregate/UserDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Aggregate/UserState.php b/examples/FunctionalFlavour/Aggregate/UserState.php index 0dadd75..13d2114 100644 --- a/examples/FunctionalFlavour/Aggregate/UserState.php +++ b/examples/FunctionalFlavour/Aggregate/UserState.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Api/Command.php b/examples/FunctionalFlavour/Api/Command.php index 51121dc..af49fd8 100644 --- a/examples/FunctionalFlavour/Api/Command.php +++ b/examples/FunctionalFlavour/Api/Command.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Api/Event.php b/examples/FunctionalFlavour/Api/Event.php index 2c0b6d2..a6a03c4 100644 --- a/examples/FunctionalFlavour/Api/Event.php +++ b/examples/FunctionalFlavour/Api/Event.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Api/MessageDescription.php b/examples/FunctionalFlavour/Api/MessageDescription.php index 008d8ee..d79fc0c 100644 --- a/examples/FunctionalFlavour/Api/MessageDescription.php +++ b/examples/FunctionalFlavour/Api/MessageDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Api/Query.php b/examples/FunctionalFlavour/Api/Query.php index 2b5d0a2..5955e38 100644 --- a/examples/FunctionalFlavour/Api/Query.php +++ b/examples/FunctionalFlavour/Api/Query.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Command/ChangeUsername.php b/examples/FunctionalFlavour/Command/ChangeUsername.php index b5ab6d9..d983dda 100644 --- a/examples/FunctionalFlavour/Command/ChangeUsername.php +++ b/examples/FunctionalFlavour/Command/ChangeUsername.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Command/RegisterUser.php b/examples/FunctionalFlavour/Command/RegisterUser.php index 221ea5d..30d22f4 100644 --- a/examples/FunctionalFlavour/Command/RegisterUser.php +++ b/examples/FunctionalFlavour/Command/RegisterUser.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Event/UserRegistered.php b/examples/FunctionalFlavour/Event/UserRegistered.php index 0e7a633..e99cecd 100644 --- a/examples/FunctionalFlavour/Event/UserRegistered.php +++ b/examples/FunctionalFlavour/Event/UserRegistered.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Event/UserRegistrationFailed.php b/examples/FunctionalFlavour/Event/UserRegistrationFailed.php index d72a6c4..e01e4a9 100644 --- a/examples/FunctionalFlavour/Event/UserRegistrationFailed.php +++ b/examples/FunctionalFlavour/Event/UserRegistrationFailed.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Event/UsernameChanged.php b/examples/FunctionalFlavour/Event/UsernameChanged.php index 441e341..6bee1b5 100644 --- a/examples/FunctionalFlavour/Event/UsernameChanged.php +++ b/examples/FunctionalFlavour/Event/UsernameChanged.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/ExampleFunctionalPort.php b/examples/FunctionalFlavour/ExampleFunctionalPort.php index 5543689..2a90cab 100644 --- a/examples/FunctionalFlavour/ExampleFunctionalPort.php +++ b/examples/FunctionalFlavour/ExampleFunctionalPort.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/ProcessManager/SendWelcomeEmail.php b/examples/FunctionalFlavour/ProcessManager/SendWelcomeEmail.php index d8e23f4..859914f 100644 --- a/examples/FunctionalFlavour/ProcessManager/SendWelcomeEmail.php +++ b/examples/FunctionalFlavour/ProcessManager/SendWelcomeEmail.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Projector/RegisteredUsersProjector.php b/examples/FunctionalFlavour/Projector/RegisteredUsersProjector.php index 657a1db..7780f62 100644 --- a/examples/FunctionalFlavour/Projector/RegisteredUsersProjector.php +++ b/examples/FunctionalFlavour/Projector/RegisteredUsersProjector.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Query/GetUser.php b/examples/FunctionalFlavour/Query/GetUser.php index a2c0411..77e2462 100644 --- a/examples/FunctionalFlavour/Query/GetUser.php +++ b/examples/FunctionalFlavour/Query/GetUser.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Query/GetUsers.php b/examples/FunctionalFlavour/Query/GetUsers.php index f70ca62..82cab59 100644 --- a/examples/FunctionalFlavour/Query/GetUsers.php +++ b/examples/FunctionalFlavour/Query/GetUsers.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Resolver/GetUserResolver.php b/examples/FunctionalFlavour/Resolver/GetUserResolver.php index eb18c39..14fdf79 100644 --- a/examples/FunctionalFlavour/Resolver/GetUserResolver.php +++ b/examples/FunctionalFlavour/Resolver/GetUserResolver.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Resolver/GetUsersResolver.php b/examples/FunctionalFlavour/Resolver/GetUsersResolver.php index 0de71cf..b236438 100644 --- a/examples/FunctionalFlavour/Resolver/GetUsersResolver.php +++ b/examples/FunctionalFlavour/Resolver/GetUsersResolver.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/FunctionalFlavour/Util/ApplyPayload.php b/examples/FunctionalFlavour/Util/ApplyPayload.php index c98592b..b8312fb 100644 --- a/examples/FunctionalFlavour/Util/ApplyPayload.php +++ b/examples/FunctionalFlavour/Util/ApplyPayload.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/OopFlavour/Aggregate/User.php b/examples/OopFlavour/Aggregate/User.php index 24e7301..f36d0ca 100644 --- a/examples/OopFlavour/Aggregate/User.php +++ b/examples/OopFlavour/Aggregate/User.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/OopFlavour/Aggregate/UserDescription.php b/examples/OopFlavour/Aggregate/UserDescription.php index a643569..cbd9790 100644 --- a/examples/OopFlavour/Aggregate/UserDescription.php +++ b/examples/OopFlavour/Aggregate/UserDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/OopFlavour/ExampleOopPort.php b/examples/OopFlavour/ExampleOopPort.php index 53def23..458d609 100644 --- a/examples/OopFlavour/ExampleOopPort.php +++ b/examples/OopFlavour/ExampleOopPort.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Aggregate/Aggregate.php b/examples/PrototypingFlavour/Aggregate/Aggregate.php index d242b04..527f89f 100644 --- a/examples/PrototypingFlavour/Aggregate/Aggregate.php +++ b/examples/PrototypingFlavour/Aggregate/Aggregate.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Aggregate/CachableUserFunction.php b/examples/PrototypingFlavour/Aggregate/CachableUserFunction.php index a6e8366..459df52 100644 --- a/examples/PrototypingFlavour/Aggregate/CachableUserFunction.php +++ b/examples/PrototypingFlavour/Aggregate/CachableUserFunction.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Aggregate/CacheableUserDescription.php b/examples/PrototypingFlavour/Aggregate/CacheableUserDescription.php index 7b6ea37..9123c90 100644 --- a/examples/PrototypingFlavour/Aggregate/CacheableUserDescription.php +++ b/examples/PrototypingFlavour/Aggregate/CacheableUserDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Aggregate/UserDescription.php b/examples/PrototypingFlavour/Aggregate/UserDescription.php index 5fb65b0..5b61152 100644 --- a/examples/PrototypingFlavour/Aggregate/UserDescription.php +++ b/examples/PrototypingFlavour/Aggregate/UserDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Aggregate/UserState.php b/examples/PrototypingFlavour/Aggregate/UserState.php index 7337855..64b332b 100644 --- a/examples/PrototypingFlavour/Aggregate/UserState.php +++ b/examples/PrototypingFlavour/Aggregate/UserState.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Messaging/Command.php b/examples/PrototypingFlavour/Messaging/Command.php index c2b0c58..48d9cd3 100644 --- a/examples/PrototypingFlavour/Messaging/Command.php +++ b/examples/PrototypingFlavour/Messaging/Command.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Messaging/CommandWithCustomHandler.php b/examples/PrototypingFlavour/Messaging/CommandWithCustomHandler.php index a01e589..06e6e6b 100644 --- a/examples/PrototypingFlavour/Messaging/CommandWithCustomHandler.php +++ b/examples/PrototypingFlavour/Messaging/CommandWithCustomHandler.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Messaging/Event.php b/examples/PrototypingFlavour/Messaging/Event.php index 2263063..93cdf5a 100644 --- a/examples/PrototypingFlavour/Messaging/Event.php +++ b/examples/PrototypingFlavour/Messaging/Event.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Messaging/MessageDescription.php b/examples/PrototypingFlavour/Messaging/MessageDescription.php index 5ab8a99..38265ae 100644 --- a/examples/PrototypingFlavour/Messaging/MessageDescription.php +++ b/examples/PrototypingFlavour/Messaging/MessageDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Messaging/Query.php b/examples/PrototypingFlavour/Messaging/Query.php index 4a28d65..8368e5a 100644 --- a/examples/PrototypingFlavour/Messaging/Query.php +++ b/examples/PrototypingFlavour/Messaging/Query.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/ProcessManager/SendWelcomeEmail.php b/examples/PrototypingFlavour/ProcessManager/SendWelcomeEmail.php index 6d617e5..37f4cf1 100644 --- a/examples/PrototypingFlavour/ProcessManager/SendWelcomeEmail.php +++ b/examples/PrototypingFlavour/ProcessManager/SendWelcomeEmail.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Projector/RegisteredUsersProjector.php b/examples/PrototypingFlavour/Projector/RegisteredUsersProjector.php index 109f600..630fadf 100644 --- a/examples/PrototypingFlavour/Projector/RegisteredUsersProjector.php +++ b/examples/PrototypingFlavour/Projector/RegisteredUsersProjector.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Resolver/GetUserResolver.php b/examples/PrototypingFlavour/Resolver/GetUserResolver.php index ab3b509..d008dd3 100644 --- a/examples/PrototypingFlavour/Resolver/GetUserResolver.php +++ b/examples/PrototypingFlavour/Resolver/GetUserResolver.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/PrototypingFlavour/Resolver/GetUsersResolver.php b/examples/PrototypingFlavour/Resolver/GetUsersResolver.php index 39476b3..2c7563c 100644 --- a/examples/PrototypingFlavour/Resolver/GetUsersResolver.php +++ b/examples/PrototypingFlavour/Resolver/GetUsersResolver.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Aggregate/AggregateTestHistoryEventEnricher.php b/src/Aggregate/AggregateTestHistoryEventEnricher.php index 326ea18..3947e6d 100644 --- a/src/Aggregate/AggregateTestHistoryEventEnricher.php +++ b/src/Aggregate/AggregateTestHistoryEventEnricher.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Aggregate/ClosureAggregateTranslator.php b/src/Aggregate/ClosureAggregateTranslator.php index e9bcea1..54c2cbd 100644 --- a/src/Aggregate/ClosureAggregateTranslator.php +++ b/src/Aggregate/ClosureAggregateTranslator.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Aggregate/ContextProvider.php b/src/Aggregate/ContextProvider.php index 4e6ada8..689a73b 100644 --- a/src/Aggregate/ContextProvider.php +++ b/src/Aggregate/ContextProvider.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Aggregate/Exception/AggregateNotFound.php b/src/Aggregate/Exception/AggregateNotFound.php index 606bfa8..d8f3e1e 100644 --- a/src/Aggregate/Exception/AggregateNotFound.php +++ b/src/Aggregate/Exception/AggregateNotFound.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Aggregate/GenericAggregateRoot.php b/src/Aggregate/GenericAggregateRoot.php index 0555475..ffaccec 100644 --- a/src/Aggregate/GenericAggregateRoot.php +++ b/src/Aggregate/GenericAggregateRoot.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Commanding/CommandPreProcessor.php b/src/Commanding/CommandPreProcessor.php index 9a6e7d5..7d99bd6 100644 --- a/src/Commanding/CommandPreProcessor.php +++ b/src/Commanding/CommandPreProcessor.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Commanding/CommandProcessor.php b/src/Commanding/CommandProcessor.php index 5305179..906a18d 100644 --- a/src/Commanding/CommandProcessor.php +++ b/src/Commanding/CommandProcessor.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Commanding/CommandProcessorDescription.php b/src/Commanding/CommandProcessorDescription.php index 1caf2e9..123cb4f 100644 --- a/src/Commanding/CommandProcessorDescription.php +++ b/src/Commanding/CommandProcessorDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Commanding/CommandToProcessorRouter.php b/src/Commanding/CommandToProcessorRouter.php index 46b9671..93d0773 100644 --- a/src/Commanding/CommandToProcessorRouter.php +++ b/src/Commanding/CommandToProcessorRouter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Commanding/GenericJsonSchemaCommand.php b/src/Commanding/GenericJsonSchemaCommand.php index 6d8aab2..605602d 100644 --- a/src/Commanding/GenericJsonSchemaCommand.php +++ b/src/Commanding/GenericJsonSchemaCommand.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Container/ContainerChain.php b/src/Container/ContainerChain.php index 1e73df4..44a2a7d 100644 --- a/src/Container/ContainerChain.php +++ b/src/Container/ContainerChain.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Container/ContextProviderFactory.php b/src/Container/ContextProviderFactory.php index 58997d4..8d51d9f 100644 --- a/src/Container/ContextProviderFactory.php +++ b/src/Container/ContextProviderFactory.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Container/EventMachineContainer.php b/src/Container/EventMachineContainer.php index ed30699..388c2f2 100644 --- a/src/Container/EventMachineContainer.php +++ b/src/Container/EventMachineContainer.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Container/ReflectionBasedContainer.php b/src/Container/ReflectionBasedContainer.php index 8b31875..2648edd 100644 --- a/src/Container/ReflectionBasedContainer.php +++ b/src/Container/ReflectionBasedContainer.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Container/ServiceNotFound.php b/src/Container/ServiceNotFound.php index d9f34b6..a4294f1 100644 --- a/src/Container/ServiceNotFound.php +++ b/src/Container/ServiceNotFound.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Container/ServiceRegistry.php b/src/Container/ServiceRegistry.php index 627ee2a..e6f0615 100644 --- a/src/Container/ServiceRegistry.php +++ b/src/Container/ServiceRegistry.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Container/TestEnvContainer.php b/src/Container/TestEnvContainer.php index 818a3b4..de09f17 100644 --- a/src/Container/TestEnvContainer.php +++ b/src/Container/TestEnvContainer.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Data/DataConverter.php b/src/Data/DataConverter.php index 5f0d97a..df975a2 100644 --- a/src/Data/DataConverter.php +++ b/src/Data/DataConverter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Data/ImmutableRecord.php b/src/Data/ImmutableRecord.php index f149e5b..06d2ccb 100644 --- a/src/Data/ImmutableRecord.php +++ b/src/Data/ImmutableRecord.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Data/ImmutableRecordDataConverter.php b/src/Data/ImmutableRecordDataConverter.php index 9fb6a6d..0f260a4 100644 --- a/src/Data/ImmutableRecordDataConverter.php +++ b/src/Data/ImmutableRecordDataConverter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Data/ImmutableRecordLogic.php b/src/Data/ImmutableRecordLogic.php index 0064df7..337a29a 100644 --- a/src/Data/ImmutableRecordLogic.php +++ b/src/Data/ImmutableRecordLogic.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/EventMachine.php b/src/EventMachine.php index ff39ca9..3ac517f 100644 --- a/src/EventMachine.php +++ b/src/EventMachine.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/EventMachineDescription.php b/src/EventMachineDescription.php index 6eb29cd..12e7fa6 100644 --- a/src/EventMachineDescription.php +++ b/src/EventMachineDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Eventing/EventConverterBusPlugin.php b/src/Eventing/EventConverterBusPlugin.php index c3610c9..447fefc 100644 --- a/src/Eventing/EventConverterBusPlugin.php +++ b/src/Eventing/EventConverterBusPlugin.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Eventing/EventRecorderDescription.php b/src/Eventing/EventRecorderDescription.php index 2773057..0b4596f 100644 --- a/src/Eventing/EventRecorderDescription.php +++ b/src/Eventing/EventRecorderDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Eventing/GenericJsonSchemaEvent.php b/src/Eventing/GenericJsonSchemaEvent.php index 030c0af..72179d7 100644 --- a/src/Eventing/GenericJsonSchemaEvent.php +++ b/src/Eventing/GenericJsonSchemaEvent.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/EventMachineException.php b/src/Exception/EventMachineException.php index bcf76c0..5404621 100644 --- a/src/Exception/EventMachineException.php +++ b/src/Exception/EventMachineException.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/InvalidArgumentException.php b/src/Exception/InvalidArgumentException.php index 6957824..ee7bcab 100644 --- a/src/Exception/InvalidArgumentException.php +++ b/src/Exception/InvalidArgumentException.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/InvalidEventFormatException.php b/src/Exception/InvalidEventFormatException.php index b011f11..94f51c0 100644 --- a/src/Exception/InvalidEventFormatException.php +++ b/src/Exception/InvalidEventFormatException.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/MissingAggregateIdentifierException.php b/src/Exception/MissingAggregateIdentifierException.php index 89b6400..1522c0e 100644 --- a/src/Exception/MissingAggregateIdentifierException.php +++ b/src/Exception/MissingAggregateIdentifierException.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/NoGeneratorException.php b/src/Exception/NoGeneratorException.php index 6e8ba77..f3c2796 100644 --- a/src/Exception/NoGeneratorException.php +++ b/src/Exception/NoGeneratorException.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/RuntimeException.php b/src/Exception/RuntimeException.php index 8aed1ea..e01d2f1 100644 --- a/src/Exception/RuntimeException.php +++ b/src/Exception/RuntimeException.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/Transaction.php b/src/Exception/Transaction.php index 0d630ab..4e8c87c 100644 --- a/src/Exception/Transaction.php +++ b/src/Exception/Transaction.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/TransactionCommitFailed.php b/src/Exception/TransactionCommitFailed.php index 69c21e4..c232d00 100644 --- a/src/Exception/TransactionCommitFailed.php +++ b/src/Exception/TransactionCommitFailed.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/TransactionNotStarted.php b/src/Exception/TransactionNotStarted.php index 5b8e95c..6843c8e 100644 --- a/src/Exception/TransactionNotStarted.php +++ b/src/Exception/TransactionNotStarted.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/TransactionRollBackFailed.php b/src/Exception/TransactionRollBackFailed.php index 925c807..d4e15c6 100644 --- a/src/Exception/TransactionRollBackFailed.php +++ b/src/Exception/TransactionRollBackFailed.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Http/MessageBox.php b/src/Http/MessageBox.php index bde25d7..6fb547d 100644 --- a/src/Http/MessageBox.php +++ b/src/Http/MessageBox.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/AnnotatedType.php b/src/JsonSchema/AnnotatedType.php index dafc969..6079e74 100644 --- a/src/JsonSchema/AnnotatedType.php +++ b/src/JsonSchema/AnnotatedType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/JsonSchema.php b/src/JsonSchema/JsonSchema.php index f4ab6d1..b469c0a 100644 --- a/src/JsonSchema/JsonSchema.php +++ b/src/JsonSchema/JsonSchema.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/JsonSchemaAssertion.php b/src/JsonSchema/JsonSchemaAssertion.php index 76a9138..90935ad 100644 --- a/src/JsonSchema/JsonSchemaAssertion.php +++ b/src/JsonSchema/JsonSchemaAssertion.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/JustinRainbowJsonSchemaAssertion.php b/src/JsonSchema/JustinRainbowJsonSchemaAssertion.php index 26d0377..ac7d396 100644 --- a/src/JsonSchema/JustinRainbowJsonSchemaAssertion.php +++ b/src/JsonSchema/JustinRainbowJsonSchemaAssertion.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type.php b/src/JsonSchema/Type.php index 3fe80fb..5597ef8 100644 --- a/src/JsonSchema/Type.php +++ b/src/JsonSchema/Type.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/ArrayType.php b/src/JsonSchema/Type/ArrayType.php index 81ec503..f31f236 100644 --- a/src/JsonSchema/Type/ArrayType.php +++ b/src/JsonSchema/Type/ArrayType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/BoolType.php b/src/JsonSchema/Type/BoolType.php index 1982bb6..d0f76ab 100644 --- a/src/JsonSchema/Type/BoolType.php +++ b/src/JsonSchema/Type/BoolType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/EmailType.php b/src/JsonSchema/Type/EmailType.php index fd68fe2..55390d1 100644 --- a/src/JsonSchema/Type/EmailType.php +++ b/src/JsonSchema/Type/EmailType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/EnumType.php b/src/JsonSchema/Type/EnumType.php index b61dea1..4e75eaa 100644 --- a/src/JsonSchema/Type/EnumType.php +++ b/src/JsonSchema/Type/EnumType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/FloatType.php b/src/JsonSchema/Type/FloatType.php index 41e6b6f..23dc1db 100644 --- a/src/JsonSchema/Type/FloatType.php +++ b/src/JsonSchema/Type/FloatType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/HasAnnotations.php b/src/JsonSchema/Type/HasAnnotations.php index 0b5000e..73c3a0d 100644 --- a/src/JsonSchema/Type/HasAnnotations.php +++ b/src/JsonSchema/Type/HasAnnotations.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/IntType.php b/src/JsonSchema/Type/IntType.php index 016ddd4..b254adc 100644 --- a/src/JsonSchema/Type/IntType.php +++ b/src/JsonSchema/Type/IntType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/NullableType.php b/src/JsonSchema/Type/NullableType.php index 31c68d2..3a6451b 100644 --- a/src/JsonSchema/Type/NullableType.php +++ b/src/JsonSchema/Type/NullableType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/ObjectType.php b/src/JsonSchema/Type/ObjectType.php index 7401bdd..c244b12 100644 --- a/src/JsonSchema/Type/ObjectType.php +++ b/src/JsonSchema/Type/ObjectType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/StringType.php b/src/JsonSchema/Type/StringType.php index 5ca5554..1e2f0b3 100644 --- a/src/JsonSchema/Type/StringType.php +++ b/src/JsonSchema/Type/StringType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/TypeRef.php b/src/JsonSchema/Type/TypeRef.php index ed55060..0a0aedf 100644 --- a/src/JsonSchema/Type/TypeRef.php +++ b/src/JsonSchema/Type/TypeRef.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/JsonSchema/Type/UuidType.php b/src/JsonSchema/Type/UuidType.php index 3e4ad54..8bdb50a 100644 --- a/src/JsonSchema/Type/UuidType.php +++ b/src/JsonSchema/Type/UuidType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Messaging/GenericJsonSchemaMessage.php b/src/Messaging/GenericJsonSchemaMessage.php index ccbde68..51df565 100644 --- a/src/Messaging/GenericJsonSchemaMessage.php +++ b/src/Messaging/GenericJsonSchemaMessage.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Messaging/GenericJsonSchemaMessageFactory.php b/src/Messaging/GenericJsonSchemaMessageFactory.php index f6c372e..5cb3b16 100644 --- a/src/Messaging/GenericJsonSchemaMessageFactory.php +++ b/src/Messaging/GenericJsonSchemaMessageFactory.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Messaging/Message.php b/src/Messaging/Message.php index 6ebf4bb..4ab77c8 100644 --- a/src/Messaging/Message.php +++ b/src/Messaging/Message.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Messaging/MessageBag.php b/src/Messaging/MessageBag.php index 8bbb6cd..63f91e9 100644 --- a/src/Messaging/MessageBag.php +++ b/src/Messaging/MessageBag.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Messaging/MessageDispatcher.php b/src/Messaging/MessageDispatcher.php index 3040ecb..d39fd00 100644 --- a/src/Messaging/MessageDispatcher.php +++ b/src/Messaging/MessageDispatcher.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Messaging/MessageFactory.php b/src/Messaging/MessageFactory.php index da7f9eb..26d94bb 100644 --- a/src/Messaging/MessageFactory.php +++ b/src/Messaging/MessageFactory.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Messaging/MessageFactoryAware.php b/src/Messaging/MessageFactoryAware.php index 11981db..83dbee0 100644 --- a/src/Messaging/MessageFactoryAware.php +++ b/src/Messaging/MessageFactoryAware.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Messaging/MessageProducer.php b/src/Messaging/MessageProducer.php index c1ece63..87179fb 100644 --- a/src/Messaging/MessageProducer.php +++ b/src/Messaging/MessageProducer.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/AggregateStateStore.php b/src/Persistence/AggregateStateStore.php index e37c6fc..4213639 100644 --- a/src/Persistence/AggregateStateStore.php +++ b/src/Persistence/AggregateStateStore.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DeletableState.php b/src/Persistence/DeletableState.php index 5984563..a9cda7d 100644 --- a/src/Persistence/DeletableState.php +++ b/src/Persistence/DeletableState.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore.php b/src/Persistence/DocumentStore.php index 573cbf0..5f65815 100644 --- a/src/Persistence/DocumentStore.php +++ b/src/Persistence/DocumentStore.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/FieldIndex.php b/src/Persistence/DocumentStore/FieldIndex.php index 554f813..e5758de 100644 --- a/src/Persistence/DocumentStore/FieldIndex.php +++ b/src/Persistence/DocumentStore/FieldIndex.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/AndFilter.php b/src/Persistence/DocumentStore/Filter/AndFilter.php index 4736755..71ae893 100644 --- a/src/Persistence/DocumentStore/Filter/AndFilter.php +++ b/src/Persistence/DocumentStore/Filter/AndFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/AnyFilter.php b/src/Persistence/DocumentStore/Filter/AnyFilter.php index 8c0b3e6..7dffd6b 100644 --- a/src/Persistence/DocumentStore/Filter/AnyFilter.php +++ b/src/Persistence/DocumentStore/Filter/AnyFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/EqFilter.php b/src/Persistence/DocumentStore/Filter/EqFilter.php index 33b3f0d..1ffa0e2 100644 --- a/src/Persistence/DocumentStore/Filter/EqFilter.php +++ b/src/Persistence/DocumentStore/Filter/EqFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/ExistsFilter.php b/src/Persistence/DocumentStore/Filter/ExistsFilter.php index 02d048c..2a4d099 100644 --- a/src/Persistence/DocumentStore/Filter/ExistsFilter.php +++ b/src/Persistence/DocumentStore/Filter/ExistsFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/Filter.php b/src/Persistence/DocumentStore/Filter/Filter.php index 012bb83..3d1a1a1 100644 --- a/src/Persistence/DocumentStore/Filter/Filter.php +++ b/src/Persistence/DocumentStore/Filter/Filter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/GtFilter.php b/src/Persistence/DocumentStore/Filter/GtFilter.php index 49c95ed..698bb1f 100644 --- a/src/Persistence/DocumentStore/Filter/GtFilter.php +++ b/src/Persistence/DocumentStore/Filter/GtFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/GteFilter.php b/src/Persistence/DocumentStore/Filter/GteFilter.php index 4a9c377..2c0e6a9 100644 --- a/src/Persistence/DocumentStore/Filter/GteFilter.php +++ b/src/Persistence/DocumentStore/Filter/GteFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/InArrayFilter.php b/src/Persistence/DocumentStore/Filter/InArrayFilter.php index db9f099..fb32b49 100644 --- a/src/Persistence/DocumentStore/Filter/InArrayFilter.php +++ b/src/Persistence/DocumentStore/Filter/InArrayFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/LikeFilter.php b/src/Persistence/DocumentStore/Filter/LikeFilter.php index afdad15..de8827d 100644 --- a/src/Persistence/DocumentStore/Filter/LikeFilter.php +++ b/src/Persistence/DocumentStore/Filter/LikeFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/LtFilter.php b/src/Persistence/DocumentStore/Filter/LtFilter.php index c86f187..eeaf6d8 100644 --- a/src/Persistence/DocumentStore/Filter/LtFilter.php +++ b/src/Persistence/DocumentStore/Filter/LtFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/LteFilter.php b/src/Persistence/DocumentStore/Filter/LteFilter.php index 179057f..f9a24d3 100644 --- a/src/Persistence/DocumentStore/Filter/LteFilter.php +++ b/src/Persistence/DocumentStore/Filter/LteFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/NotFilter.php b/src/Persistence/DocumentStore/Filter/NotFilter.php index 22a351b..9e7a05e 100644 --- a/src/Persistence/DocumentStore/Filter/NotFilter.php +++ b/src/Persistence/DocumentStore/Filter/NotFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Filter/OrFilter.php b/src/Persistence/DocumentStore/Filter/OrFilter.php index 82005e2..1b9ceac 100644 --- a/src/Persistence/DocumentStore/Filter/OrFilter.php +++ b/src/Persistence/DocumentStore/Filter/OrFilter.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/InMemoryDocumentStore.php b/src/Persistence/DocumentStore/InMemoryDocumentStore.php index e8b3574..79e7526 100644 --- a/src/Persistence/DocumentStore/InMemoryDocumentStore.php +++ b/src/Persistence/DocumentStore/InMemoryDocumentStore.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/Index.php b/src/Persistence/DocumentStore/Index.php index 67aaf29..e9abd5d 100644 --- a/src/Persistence/DocumentStore/Index.php +++ b/src/Persistence/DocumentStore/Index.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/MultiFieldIndex.php b/src/Persistence/DocumentStore/MultiFieldIndex.php index 8dc92ff..08675fe 100644 --- a/src/Persistence/DocumentStore/MultiFieldIndex.php +++ b/src/Persistence/DocumentStore/MultiFieldIndex.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/OrderBy/AndOrder.php b/src/Persistence/DocumentStore/OrderBy/AndOrder.php index fb152cd..6fc0391 100644 --- a/src/Persistence/DocumentStore/OrderBy/AndOrder.php +++ b/src/Persistence/DocumentStore/OrderBy/AndOrder.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/OrderBy/Asc.php b/src/Persistence/DocumentStore/OrderBy/Asc.php index fb0a080..466b2a1 100644 --- a/src/Persistence/DocumentStore/OrderBy/Asc.php +++ b/src/Persistence/DocumentStore/OrderBy/Asc.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/OrderBy/Desc.php b/src/Persistence/DocumentStore/OrderBy/Desc.php index f08e683..56a54f3 100644 --- a/src/Persistence/DocumentStore/OrderBy/Desc.php +++ b/src/Persistence/DocumentStore/OrderBy/Desc.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/DocumentStore/OrderBy/OrderBy.php b/src/Persistence/DocumentStore/OrderBy/OrderBy.php index 6a84b64..36f2116 100644 --- a/src/Persistence/DocumentStore/OrderBy/OrderBy.php +++ b/src/Persistence/DocumentStore/OrderBy/OrderBy.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/InMemoryConnection.php b/src/Persistence/InMemoryConnection.php index a7b73e6..9a97045 100644 --- a/src/Persistence/InMemoryConnection.php +++ b/src/Persistence/InMemoryConnection.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/InMemoryEventStore.php b/src/Persistence/InMemoryEventStore.php index 2bd8df4..f21fa9e 100644 --- a/src/Persistence/InMemoryEventStore.php +++ b/src/Persistence/InMemoryEventStore.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/Stream.php b/src/Persistence/Stream.php index fce3c1d..0183889 100644 --- a/src/Persistence/Stream.php +++ b/src/Persistence/Stream.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/TransactionManager.php b/src/Persistence/TransactionManager.php index 5083527..fb4d316 100644 --- a/src/Persistence/TransactionManager.php +++ b/src/Persistence/TransactionManager.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Persistence/TransactionalConnection.php b/src/Persistence/TransactionalConnection.php index ea3bab2..8cac8c5 100644 --- a/src/Persistence/TransactionalConnection.php +++ b/src/Persistence/TransactionalConnection.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/AggregateProjector.php b/src/Projecting/AggregateProjector.php index eec847f..c0eef5c 100644 --- a/src/Projecting/AggregateProjector.php +++ b/src/Projecting/AggregateProjector.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/CustomEventProjector.php b/src/Projecting/CustomEventProjector.php index f8883df..7b70c54 100644 --- a/src/Projecting/CustomEventProjector.php +++ b/src/Projecting/CustomEventProjector.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/FlavourAware.php b/src/Projecting/FlavourAware.php index e0181d2..7608f46 100644 --- a/src/Projecting/FlavourAware.php +++ b/src/Projecting/FlavourAware.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/InMemory/InMemoryEventStoreProjector.php b/src/Projecting/InMemory/InMemoryEventStoreProjector.php index 930b466..a4eb1f9 100644 --- a/src/Projecting/InMemory/InMemoryEventStoreProjector.php +++ b/src/Projecting/InMemory/InMemoryEventStoreProjector.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/InMemory/InMemoryEventStoreQuery.php b/src/Projecting/InMemory/InMemoryEventStoreQuery.php index 493c1de..6462eed 100644 --- a/src/Projecting/InMemory/InMemoryEventStoreQuery.php +++ b/src/Projecting/InMemory/InMemoryEventStoreQuery.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/InMemory/InMemoryEventStoreReadModelProjector.php b/src/Projecting/InMemory/InMemoryEventStoreReadModelProjector.php index e70e424..23d049a 100644 --- a/src/Projecting/InMemory/InMemoryEventStoreReadModelProjector.php +++ b/src/Projecting/InMemory/InMemoryEventStoreReadModelProjector.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/InMemory/InMemoryProjectionManager.php b/src/Projecting/InMemory/InMemoryProjectionManager.php index b25dbed..94f1269 100644 --- a/src/Projecting/InMemory/InMemoryProjectionManager.php +++ b/src/Projecting/InMemory/InMemoryProjectionManager.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/ProjectionDescription.php b/src/Projecting/ProjectionDescription.php index c273e7a..24b3168 100644 --- a/src/Projecting/ProjectionDescription.php +++ b/src/Projecting/ProjectionDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/ProjectionRunner.php b/src/Projecting/ProjectionRunner.php index be36403..9cd69c2 100644 --- a/src/Projecting/ProjectionRunner.php +++ b/src/Projecting/ProjectionRunner.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/Projector.php b/src/Projecting/Projector.php index 27d9e8d..13c256b 100644 --- a/src/Projecting/Projector.php +++ b/src/Projecting/Projector.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/ReadModel.php b/src/Projecting/ReadModel.php index 0cf6172..6d58fde 100644 --- a/src/Projecting/ReadModel.php +++ b/src/Projecting/ReadModel.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projecting/ReadModelProxy.php b/src/Projecting/ReadModelProxy.php index 06db06b..2d0a21d 100644 --- a/src/Projecting/ReadModelProxy.php +++ b/src/Projecting/ReadModelProxy.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Querying/AsyncResolver.php b/src/Querying/AsyncResolver.php index 5a9e609..e13d878 100644 --- a/src/Querying/AsyncResolver.php +++ b/src/Querying/AsyncResolver.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Querying/GenericJsonSchemaQuery.php b/src/Querying/GenericJsonSchemaQuery.php index 5dae87e..447d84a 100644 --- a/src/Querying/GenericJsonSchemaQuery.php +++ b/src/Querying/GenericJsonSchemaQuery.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Querying/QueryConverterBusPlugin.php b/src/Querying/QueryConverterBusPlugin.php index 7dc9744..1c0f894 100644 --- a/src/Querying/QueryConverterBusPlugin.php +++ b/src/Querying/QueryConverterBusPlugin.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Querying/QueryDescription.php b/src/Querying/QueryDescription.php index 8e4b176..2af2747 100644 --- a/src/Querying/QueryDescription.php +++ b/src/Querying/QueryDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Querying/SyncResolver.php b/src/Querying/SyncResolver.php index 235eaed..5ce1dc0 100644 --- a/src/Querying/SyncResolver.php +++ b/src/Querying/SyncResolver.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Runtime/Flavour.php b/src/Runtime/Flavour.php index 784f32e..ad6a53d 100644 --- a/src/Runtime/Flavour.php +++ b/src/Runtime/Flavour.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Runtime/Functional/Port.php b/src/Runtime/Functional/Port.php index 090b499..14b8852 100644 --- a/src/Runtime/Functional/Port.php +++ b/src/Runtime/Functional/Port.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Runtime/FunctionalFlavour.php b/src/Runtime/FunctionalFlavour.php index 7618a18..cd31fef 100644 --- a/src/Runtime/FunctionalFlavour.php +++ b/src/Runtime/FunctionalFlavour.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Runtime/Oop/AggregateAndEventBag.php b/src/Runtime/Oop/AggregateAndEventBag.php index 529db97..bf0f8e2 100644 --- a/src/Runtime/Oop/AggregateAndEventBag.php +++ b/src/Runtime/Oop/AggregateAndEventBag.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Runtime/Oop/FlavourHint.php b/src/Runtime/Oop/FlavourHint.php index ffc8381..7c2d5a6 100644 --- a/src/Runtime/Oop/FlavourHint.php +++ b/src/Runtime/Oop/FlavourHint.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Runtime/Oop/Port.php b/src/Runtime/Oop/Port.php index ef03a62..c660068 100644 --- a/src/Runtime/Oop/Port.php +++ b/src/Runtime/Oop/Port.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Runtime/OopFlavour.php b/src/Runtime/OopFlavour.php index fa043b4..1567c40 100644 --- a/src/Runtime/OopFlavour.php +++ b/src/Runtime/OopFlavour.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Runtime/PrototypingFlavour.php b/src/Runtime/PrototypingFlavour.php index 0b4c3f7..34aa8fb 100644 --- a/src/Runtime/PrototypingFlavour.php +++ b/src/Runtime/PrototypingFlavour.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Util/DetermineVariableType.php b/src/Util/DetermineVariableType.php index 9b416e0..5683742 100644 --- a/src/Util/DetermineVariableType.php +++ b/src/Util/DetermineVariableType.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Util/MapIterator.php b/src/Util/MapIterator.php index b24bb3a..3f30afd 100644 --- a/src/Util/MapIterator.php +++ b/src/Util/MapIterator.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Aggregate/GenericAggregateRootTest.php b/tests/Aggregate/GenericAggregateRootTest.php index c12bc34..35dda6d 100644 --- a/tests/Aggregate/GenericAggregateRootTest.php +++ b/tests/Aggregate/GenericAggregateRootTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Aggregate/Stub/ContextAwareAggregate.php b/tests/Aggregate/Stub/ContextAwareAggregate.php index 98a6224..43e836d 100644 --- a/tests/Aggregate/Stub/ContextAwareAggregate.php +++ b/tests/Aggregate/Stub/ContextAwareAggregate.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Aggregate/Stub/ContextAwareAggregateDescription.php b/tests/Aggregate/Stub/ContextAwareAggregateDescription.php index faf758e..6661236 100644 --- a/tests/Aggregate/Stub/ContextAwareAggregateDescription.php +++ b/tests/Aggregate/Stub/ContextAwareAggregateDescription.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/BasicTestCase.php b/tests/BasicTestCase.php index bc6b858..7de0808 100644 --- a/tests/BasicTestCase.php +++ b/tests/BasicTestCase.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Commanding/CommandProcessorTest.php b/tests/Commanding/CommandProcessorTest.php index 5766983..537b3e0 100644 --- a/tests/Commanding/CommandProcessorTest.php +++ b/tests/Commanding/CommandProcessorTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Commanding/CommandToProcessorRouterTest.php b/tests/Commanding/CommandToProcessorRouterTest.php index b21e8c5..8fd271b 100644 --- a/tests/Commanding/CommandToProcessorRouterTest.php +++ b/tests/Commanding/CommandToProcessorRouterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Container/ReflectionBasedContainerTest.php b/tests/Container/ReflectionBasedContainerTest.php index 6988155..c2d4410 100644 --- a/tests/Container/ReflectionBasedContainerTest.php +++ b/tests/Container/ReflectionBasedContainerTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/ImmutableRecordTest.php b/tests/Data/ImmutableRecordTest.php index 74d801e..bad7c80 100644 --- a/tests/Data/ImmutableRecordTest.php +++ b/tests/Data/ImmutableRecordTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestAmountVO.php b/tests/Data/Stubs/TestAmountVO.php index c9fcd44..1b5df56 100644 --- a/tests/Data/Stubs/TestAmountVO.php +++ b/tests/Data/Stubs/TestAmountVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestBlacklistIdentityCollectionVO.php b/tests/Data/Stubs/TestBlacklistIdentityCollectionVO.php index fb197f8..adc9701 100644 --- a/tests/Data/Stubs/TestBlacklistIdentityCollectionVO.php +++ b/tests/Data/Stubs/TestBlacklistIdentityCollectionVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestBlacklistVO.php b/tests/Data/Stubs/TestBlacklistVO.php index f92100b..8332ae9 100644 --- a/tests/Data/Stubs/TestBlacklistVO.php +++ b/tests/Data/Stubs/TestBlacklistVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestBuildingVO.php b/tests/Data/Stubs/TestBuildingVO.php index a679b1f..ebcb214 100644 --- a/tests/Data/Stubs/TestBuildingVO.php +++ b/tests/Data/Stubs/TestBuildingVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestCommentVO.php b/tests/Data/Stubs/TestCommentVO.php index 539636c..581d591 100644 --- a/tests/Data/Stubs/TestCommentVO.php +++ b/tests/Data/Stubs/TestCommentVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestCurrencyVO.php b/tests/Data/Stubs/TestCurrencyVO.php index e6da15a..faadd17 100644 --- a/tests/Data/Stubs/TestCurrencyVO.php +++ b/tests/Data/Stubs/TestCurrencyVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestDefaultPrice.php b/tests/Data/Stubs/TestDefaultPrice.php index 9c213bc..e41e58d 100644 --- a/tests/Data/Stubs/TestDefaultPrice.php +++ b/tests/Data/Stubs/TestDefaultPrice.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestIdentityCollectionVO.php b/tests/Data/Stubs/TestIdentityCollectionVO.php index 5a9126a..0a6dea5 100644 --- a/tests/Data/Stubs/TestIdentityCollectionVO.php +++ b/tests/Data/Stubs/TestIdentityCollectionVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestIdentityVO.php b/tests/Data/Stubs/TestIdentityVO.php index 8077699..9bb4853 100644 --- a/tests/Data/Stubs/TestIdentityVO.php +++ b/tests/Data/Stubs/TestIdentityVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestProduct.php b/tests/Data/Stubs/TestProduct.php index 0fadfb0..7caac4e 100644 --- a/tests/Data/Stubs/TestProduct.php +++ b/tests/Data/Stubs/TestProduct.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestProductActiveFlagVO.php b/tests/Data/Stubs/TestProductActiveFlagVO.php index 778ea4e..e4a6182 100644 --- a/tests/Data/Stubs/TestProductActiveFlagVO.php +++ b/tests/Data/Stubs/TestProductActiveFlagVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestProductIdVO.php b/tests/Data/Stubs/TestProductIdVO.php index ab6dbe2..ced0074 100644 --- a/tests/Data/Stubs/TestProductIdVO.php +++ b/tests/Data/Stubs/TestProductIdVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestProductNameVO.php b/tests/Data/Stubs/TestProductNameVO.php index 12a8bf0..cef8575 100644 --- a/tests/Data/Stubs/TestProductNameVO.php +++ b/tests/Data/Stubs/TestProductNameVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestProductPrice.php b/tests/Data/Stubs/TestProductPrice.php index fac0b01..565e262 100644 --- a/tests/Data/Stubs/TestProductPrice.php +++ b/tests/Data/Stubs/TestProductPrice.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestProductPriceVO.php b/tests/Data/Stubs/TestProductPriceVO.php index 9a438a3..fe9a350 100644 --- a/tests/Data/Stubs/TestProductPriceVO.php +++ b/tests/Data/Stubs/TestProductPriceVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestProductVO.php b/tests/Data/Stubs/TestProductVO.php index 36fc471..d5ceefc 100644 --- a/tests/Data/Stubs/TestProductVO.php +++ b/tests/Data/Stubs/TestProductVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Data/Stubs/TestUserVO.php b/tests/Data/Stubs/TestUserVO.php index f03d2a1..3fc995b 100644 --- a/tests/Data/Stubs/TestUserVO.php +++ b/tests/Data/Stubs/TestUserVO.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/EventMachineFunctionalFlavourTest.php b/tests/EventMachineFunctionalFlavourTest.php index 8df676b..c9d9d5c 100644 --- a/tests/EventMachineFunctionalFlavourTest.php +++ b/tests/EventMachineFunctionalFlavourTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/EventMachineOopFlavourTest.php b/tests/EventMachineOopFlavourTest.php index a2080d3..b3bb38f 100644 --- a/tests/EventMachineOopFlavourTest.php +++ b/tests/EventMachineOopFlavourTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/EventMachinePrototypingFlavourTest.php b/tests/EventMachinePrototypingFlavourTest.php index 818352a..d76bed5 100644 --- a/tests/EventMachinePrototypingFlavourTest.php +++ b/tests/EventMachinePrototypingFlavourTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/EventMachineTestAbstract.php b/tests/EventMachineTestAbstract.php index 8ca1dfb..03b9f82 100644 --- a/tests/EventMachineTestAbstract.php +++ b/tests/EventMachineTestAbstract.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/EventMachineTestModeTest.php b/tests/EventMachineTestModeTest.php index 543b138..cdc7f5e 100644 --- a/tests/EventMachineTestModeTest.php +++ b/tests/EventMachineTestModeTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Http/MessageBoxTest.php b/tests/Http/MessageBoxTest.php index b43f042..2335a73 100644 --- a/tests/Http/MessageBoxTest.php +++ b/tests/Http/MessageBoxTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/JsonSchema/Type/FloatTypeTest.php b/tests/JsonSchema/Type/FloatTypeTest.php index 69be03f..34806e8 100644 --- a/tests/JsonSchema/Type/FloatTypeTest.php +++ b/tests/JsonSchema/Type/FloatTypeTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/JsonSchema/Type/IntTypeTest.php b/tests/JsonSchema/Type/IntTypeTest.php index 71df0ff..9f4bdc4 100644 --- a/tests/JsonSchema/Type/IntTypeTest.php +++ b/tests/JsonSchema/Type/IntTypeTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/JsonSchema/Type/ObjectTypeTest.php b/tests/JsonSchema/Type/ObjectTypeTest.php index aba0ee1..a79da39 100644 --- a/tests/JsonSchema/Type/ObjectTypeTest.php +++ b/tests/JsonSchema/Type/ObjectTypeTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Messaging/GenericJsonSchemaMessageFactoryTest.php b/tests/Messaging/GenericJsonSchemaMessageFactoryTest.php index 5e11127..f913bf9 100644 --- a/tests/Messaging/GenericJsonSchemaMessageFactoryTest.php +++ b/tests/Messaging/GenericJsonSchemaMessageFactoryTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Messaging/GenericJsonSchemaMessageTest.php b/tests/Messaging/GenericJsonSchemaMessageTest.php index 0114ffb..bae5444 100644 --- a/tests/Messaging/GenericJsonSchemaMessageTest.php +++ b/tests/Messaging/GenericJsonSchemaMessageTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/FieldIndexTest.php b/tests/Persistence/DocumentStore/FieldIndexTest.php index 05f6f4c..7ab0299 100644 --- a/tests/Persistence/DocumentStore/FieldIndexTest.php +++ b/tests/Persistence/DocumentStore/FieldIndexTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/AndFilterTest.php b/tests/Persistence/DocumentStore/Filter/AndFilterTest.php index 30f7448..cb241d9 100644 --- a/tests/Persistence/DocumentStore/Filter/AndFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/AndFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/EqFilterTest.php b/tests/Persistence/DocumentStore/Filter/EqFilterTest.php index 1b25a74..f3963ed 100644 --- a/tests/Persistence/DocumentStore/Filter/EqFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/EqFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/ExistsFilterTest.php b/tests/Persistence/DocumentStore/Filter/ExistsFilterTest.php index 195214e..cfd6d5d 100644 --- a/tests/Persistence/DocumentStore/Filter/ExistsFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/ExistsFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/FilterTestHelperTrait.php b/tests/Persistence/DocumentStore/Filter/FilterTestHelperTrait.php index c7bc684..b8cfb8b 100644 --- a/tests/Persistence/DocumentStore/Filter/FilterTestHelperTrait.php +++ b/tests/Persistence/DocumentStore/Filter/FilterTestHelperTrait.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/GtFilterTest.php b/tests/Persistence/DocumentStore/Filter/GtFilterTest.php index a118c3f..d3c8d1f 100644 --- a/tests/Persistence/DocumentStore/Filter/GtFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/GtFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/GteFilterTest.php b/tests/Persistence/DocumentStore/Filter/GteFilterTest.php index 469e5d5..1a7d814 100644 --- a/tests/Persistence/DocumentStore/Filter/GteFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/GteFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/InArrayFilterTest.php b/tests/Persistence/DocumentStore/Filter/InArrayFilterTest.php index 9adcf7c..69462af 100644 --- a/tests/Persistence/DocumentStore/Filter/InArrayFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/InArrayFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/LikeFilterTest.php b/tests/Persistence/DocumentStore/Filter/LikeFilterTest.php index b524a08..3a68232 100644 --- a/tests/Persistence/DocumentStore/Filter/LikeFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/LikeFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/LtFilterTest.php b/tests/Persistence/DocumentStore/Filter/LtFilterTest.php index 7fee63e..1a0d82f 100644 --- a/tests/Persistence/DocumentStore/Filter/LtFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/LtFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/LteFilterTest.php b/tests/Persistence/DocumentStore/Filter/LteFilterTest.php index 4da213d..0140a8e 100644 --- a/tests/Persistence/DocumentStore/Filter/LteFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/LteFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/NotFilterTest.php b/tests/Persistence/DocumentStore/Filter/NotFilterTest.php index 8021722..7670f49 100644 --- a/tests/Persistence/DocumentStore/Filter/NotFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/NotFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/Filter/OrFilterTest.php b/tests/Persistence/DocumentStore/Filter/OrFilterTest.php index 4962ffb..1ff5b0c 100644 --- a/tests/Persistence/DocumentStore/Filter/OrFilterTest.php +++ b/tests/Persistence/DocumentStore/Filter/OrFilterTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/InMemoryDocumentStoreTest.php b/tests/Persistence/DocumentStore/InMemoryDocumentStoreTest.php index 0e09642..68a2eea 100644 --- a/tests/Persistence/DocumentStore/InMemoryDocumentStoreTest.php +++ b/tests/Persistence/DocumentStore/InMemoryDocumentStoreTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/DocumentStore/MultiFieldIndexTest.php b/tests/Persistence/DocumentStore/MultiFieldIndexTest.php index 3b9b6f8..e5aa904 100644 --- a/tests/Persistence/DocumentStore/MultiFieldIndexTest.php +++ b/tests/Persistence/DocumentStore/MultiFieldIndexTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/InMemoryConnectionTest.php b/tests/Persistence/InMemoryConnectionTest.php index cffda86..ba4aa8c 100644 --- a/tests/Persistence/InMemoryConnectionTest.php +++ b/tests/Persistence/InMemoryConnectionTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/InMemoryEventStoreTest.php b/tests/Persistence/InMemoryEventStoreTest.php index fb462ef..f7f5f95 100644 --- a/tests/Persistence/InMemoryEventStoreTest.php +++ b/tests/Persistence/InMemoryEventStoreTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Persistence/TransactionManagerTest.php b/tests/Persistence/TransactionManagerTest.php index 144d280..b83dd35 100644 --- a/tests/Persistence/TransactionManagerTest.php +++ b/tests/Persistence/TransactionManagerTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projecting/InMemory/InMemoryEventStoreProjectorTest.php b/tests/Projecting/InMemory/InMemoryEventStoreProjectorTest.php index 48adb83..39ca8eb 100644 --- a/tests/Projecting/InMemory/InMemoryEventStoreProjectorTest.php +++ b/tests/Projecting/InMemory/InMemoryEventStoreProjectorTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projecting/InMemory/InMemoryEventStoreQueryTest.php b/tests/Projecting/InMemory/InMemoryEventStoreQueryTest.php index 26b3dfe..b638b3a 100644 --- a/tests/Projecting/InMemory/InMemoryEventStoreQueryTest.php +++ b/tests/Projecting/InMemory/InMemoryEventStoreQueryTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projecting/InMemory/InMemoryEventStoreReadModelProjectorTest.php b/tests/Projecting/InMemory/InMemoryEventStoreReadModelProjectorTest.php index 793c0b6..e8867e1 100644 --- a/tests/Projecting/InMemory/InMemoryEventStoreReadModelProjectorTest.php +++ b/tests/Projecting/InMemory/InMemoryEventStoreReadModelProjectorTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projecting/InMemory/InMemoryProjectionManagerTest.php b/tests/Projecting/InMemory/InMemoryProjectionManagerTest.php index ef5fdc1..73c8e89 100644 --- a/tests/Projecting/InMemory/InMemoryProjectionManagerTest.php +++ b/tests/Projecting/InMemory/InMemoryProjectionManagerTest.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projecting/InMemory/isolated-long-running-projection.php b/tests/Projecting/InMemory/isolated-long-running-projection.php index a28de18..afaed59 100755 --- a/tests/Projecting/InMemory/isolated-long-running-projection.php +++ b/tests/Projecting/InMemory/isolated-long-running-projection.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projecting/InMemory/isolated-long-running-query.php b/tests/Projecting/InMemory/isolated-long-running-query.php index 94604a6..4e3fcdd 100755 --- a/tests/Projecting/InMemory/isolated-long-running-query.php +++ b/tests/Projecting/InMemory/isolated-long-running-query.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projecting/InMemory/isolated-long-running-read-model-projection.php b/tests/Projecting/InMemory/isolated-long-running-read-model-projection.php index c4bc738..4468458 100755 --- a/tests/Projecting/InMemory/isolated-long-running-read-model-projection.php +++ b/tests/Projecting/InMemory/isolated-long-running-read-model-projection.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projecting/InMemory/isolated-projection.php b/tests/Projecting/InMemory/isolated-projection.php index 5902e8d..4c1f848 100755 --- a/tests/Projecting/InMemory/isolated-projection.php +++ b/tests/Projecting/InMemory/isolated-projection.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projecting/InMemory/isolated-read-model-projection.php b/tests/Projecting/InMemory/isolated-read-model-projection.php index 18fdaa5..a2e3ae8 100755 --- a/tests/Projecting/InMemory/isolated-read-model-projection.php +++ b/tests/Projecting/InMemory/isolated-read-model-projection.php @@ -1,7 +1,7 @@ + * (c) 2017-2019 prooph software GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code.