From de19edab02e589f9caf3710ad39f4b0946e01894 Mon Sep 17 00:00:00 2001 From: prolic Date: Thu, 16 Apr 2020 21:26:32 -0400 Subject: [PATCH] update copyright, build php 7.3 + 7.4 on travis --- .travis.yml | 12 ++++++++++++ LICENSE | 4 ++-- composer.json | 2 +- examples/event/QuickStartSucceeded.php | 4 ++-- examples/quickstart.php | 4 ++-- src/ActionEventEmitterEventStore.php | 4 ++-- src/Container/InMemoryEventStoreFactory.php | 4 ++-- .../InMemoryProjectionManagerFactory.php | 4 ++-- src/EventStore.php | 4 ++-- src/EventStoreDecorator.php | 4 ++-- src/Exception/ConcurrencyException.php | 4 ++-- src/Exception/ConfigurationException.php | 4 ++-- src/Exception/EventStoreException.php | 4 ++-- src/Exception/ExtensionNotLoadedException.php | 4 ++-- src/Exception/InvalidArgumentException.php | 4 ++-- src/Exception/OutOfRangeException.php | 4 ++-- src/Exception/ProjectionNotFound.php | 4 ++-- src/Exception/RuntimeException.php | 4 ++-- src/Exception/StreamExistsAlready.php | 4 ++-- src/Exception/StreamNotFound.php | 4 ++-- src/Exception/TransactionAlreadyStarted.php | 4 ++-- src/Exception/TransactionNotStarted.php | 4 ++-- src/InMemoryEventStore.php | 4 ++-- src/Metadata/FieldType.php | 4 ++-- src/Metadata/MetadataEnricher.php | 4 ++-- src/Metadata/MetadataEnricherAggregate.php | 4 ++-- src/Metadata/MetadataEnricherPlugin.php | 4 ++-- src/Metadata/MetadataMatcher.php | 4 ++-- src/Metadata/Operator.php | 4 ++-- src/NonTransactionalInMemoryEventStore.php | 4 ++-- src/Plugin/AbstractPlugin.php | 4 ++-- src/Plugin/Plugin.php | 4 ++-- src/Plugin/UpcastingPlugin.php | 4 ++-- src/Projection/AbstractReadModel.php | 4 ++-- src/Projection/InMemoryEventStoreProjector.php | 4 ++-- src/Projection/InMemoryEventStoreQuery.php | 4 ++-- .../InMemoryEventStoreReadModelProjector.php | 4 ++-- src/Projection/InMemoryProjectionManager.php | 4 ++-- src/Projection/ProjectionManager.php | 4 ++-- src/Projection/ProjectionStatus.php | 4 ++-- src/Projection/Projector.php | 4 ++-- src/Projection/Query.php | 4 ++-- src/Projection/ReadModel.php | 4 ++-- src/Projection/ReadModelProjector.php | 4 ++-- src/ReadOnlyEventStore.php | 4 ++-- src/ReadOnlyEventStoreWrapper.php | 4 ++-- src/Stream.php | 4 ++-- src/StreamIterator/EmptyStreamIterator.php | 4 ++-- src/StreamIterator/InMemoryStreamIterator.php | 4 ++-- src/StreamIterator/MergedStreamIterator.php | 4 ++-- src/StreamIterator/StreamIterator.php | 4 ++-- src/StreamName.php | 4 ++-- ...ansactionalActionEventEmitterEventStore.php | 4 ++-- src/TransactionalEventStore.php | 4 ++-- src/Upcasting/NoOpEventUpcaster.php | 4 ++-- src/Upcasting/SingleEventUpcaster.php | 4 ++-- src/Upcasting/Upcaster.php | 4 ++-- src/Upcasting/UpcasterChain.php | 4 ++-- src/Util/ArrayCache.php | 4 ++-- src/Util/Assertion.php | 4 ++-- tests/AbstractEventStoreTest.php | 4 ++-- tests/ActionEventEmitterEventStoreTest.php | 4 ++-- tests/ActionEventEmitterEventStoreTestCase.php | 4 ++-- .../InMemoryEventStoreFactoryTest.php | 4 ++-- .../InMemoryProjectionManagerFactoryTest.php | 4 ++-- tests/EventStoreTestStreamTrait.php | 4 ++-- tests/Example/QuickStartTest.php | 4 ++-- tests/InMemoryEventStoreTest.php | 4 ++-- .../Metadata/MetadataEnricherAggregateTest.php | 4 ++-- tests/Metadata/MetadataEnricherPluginTest.php | 4 ++-- tests/Metadata/MetadataMatcherTest.php | 4 ++-- tests/Mock/EventLoggerPlugin.php | 4 ++-- tests/Mock/Post.php | 4 ++-- tests/Mock/PostCreated.php | 4 ++-- tests/Mock/Product.php | 4 ++-- tests/Mock/ReadModelMock.php | 4 ++-- tests/Mock/TestDomainEvent.php | 4 ++-- tests/Mock/TestIteratorAggregate.php | 4 ++-- tests/Mock/User.php | 4 ++-- tests/Mock/UserCreated.php | 4 ++-- tests/Mock/UsernameChanged.php | 4 ++-- .../NonTransactionalInMemoryEventStoreTest.php | 4 ++-- tests/Plugin/PluginManagerTest.php | 4 ++-- tests/Plugin/UpcastingPluginTest.php | 4 ++-- .../AbstractEventStoreProjectorTest.php | 4 ++-- .../Projection/AbstractEventStoreQueryTest.php | 4 ++-- ...bstractEventStoreReadModelProjectorTest.php | 4 ++-- .../AbstractProjectionManagerTest.php | 4 ++-- .../InMemoryEventStoreProjectorTest.php | 4 ++-- .../Projection/InMemoryEventStoreQueryTest.php | 4 ++-- ...nMemoryEventStoreReadModelProjectorTest.php | 4 ++-- .../InMemoryProjectionManagerTest.php | 4 ++-- .../isolated-long-running-projection.php | 4 ++-- .../Projection/isolated-long-running-query.php | 4 ++-- ...ated-long-running-read-model-projection.php | 4 ++-- tests/Projection/isolated-projection.php | 4 ++-- .../isolated-read-model-projection.php | 4 ++-- tests/ReadOnlyEventStoreWrapperTest.php | 4 ++-- .../AbstractStreamIteratorTest.php | 4 ++-- .../StreamIterator/EmptyStreamIteratorTest.php | 4 ++-- .../InMemoryStreamIteratorTest.php | 4 ++-- .../MergedStreamIteratorTest.php | 4 ++-- tests/StreamNameTest.php | 4 ++-- ...ctionalActionEventEmitterEventStoreTest.php | 4 ++-- tests/TransactionalEventStoreTestTrait.php | 4 ++-- tests/Upcasting/NoOpEventUpcasterTest.php | 4 ++-- tests/Upcasting/SingleEventUpcasterTest.php | 4 ++-- tests/Upcasting/UpcasterChainTest.php | 4 ++-- tests/Upcasting/UpcastingIteratorTest.php | 18 ++++++++---------- tests/Util/ArrayCacheTest.php | 4 ++-- 110 files changed, 235 insertions(+), 225 deletions(-) diff --git a/.travis.yml b/.travis.yml index c1e034cf..6590bf8e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,18 @@ matrix: - php: 7.2 env: - DEPENDENCIES="--prefer-lowest --prefer-stable" + - php: 7.3 + env: + - DEPENDENCIES="" + - php: 7.3 + env: + - DEPENDENCIES="--prefer-lowest --prefer-stable" + - php: 7.4 + env: + - DEPENDENCIES="" + - php: 7.4 + env: + - DEPENDENCIES="--prefer-lowest --prefer-stable" cache: directories: diff --git a/LICENSE b/LICENSE index 4292a5a4..bcd96258 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ -Copyright (c) 2014-2018, prooph software GmbH -Copyright (c) 2015-2018, Sascha-Oliver Prolic +Copyright (c) 2014-2020, prooph software GmbH +Copyright (c) 2015-2020, Sascha-Oliver Prolic All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/composer.json b/composer.json index 07927b8d..f07a580c 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ "phpunit/php-invoker": "^2.0", "phpunit/phpunit": "^7.1.4", "prooph/bookdown-template": "^0.2.3", - "prooph/php-cs-fixer-config": "^0.3", + "prooph/php-cs-fixer-config": "v0.3.1", "psr/container": "^1.0", "sandrokeil/interop-config": "^2.0.1", "satooshi/php-coveralls": "^1.0" diff --git a/examples/event/QuickStartSucceeded.php b/examples/event/QuickStartSucceeded.php index c538dc80..f66ea01f 100644 --- a/examples/event/QuickStartSucceeded.php +++ b/examples/event/QuickStartSucceeded.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/examples/quickstart.php b/examples/quickstart.php index ea706d58..03b273ac 100644 --- a/examples/quickstart.php +++ b/examples/quickstart.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/ActionEventEmitterEventStore.php b/src/ActionEventEmitterEventStore.php index 4bd1d1f0..50cd352c 100644 --- a/src/ActionEventEmitterEventStore.php +++ b/src/ActionEventEmitterEventStore.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Container/InMemoryEventStoreFactory.php b/src/Container/InMemoryEventStoreFactory.php index 934030e9..79f0783c 100644 --- a/src/Container/InMemoryEventStoreFactory.php +++ b/src/Container/InMemoryEventStoreFactory.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Container/InMemoryProjectionManagerFactory.php b/src/Container/InMemoryProjectionManagerFactory.php index 0a11e967..9502cbf5 100644 --- a/src/Container/InMemoryProjectionManagerFactory.php +++ b/src/Container/InMemoryProjectionManagerFactory.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/EventStore.php b/src/EventStore.php index af110091..33e843cf 100644 --- a/src/EventStore.php +++ b/src/EventStore.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/EventStoreDecorator.php b/src/EventStoreDecorator.php index a309963a..db62b63e 100644 --- a/src/EventStoreDecorator.php +++ b/src/EventStoreDecorator.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/ConcurrencyException.php b/src/Exception/ConcurrencyException.php index 2d13d888..069f1583 100644 --- a/src/Exception/ConcurrencyException.php +++ b/src/Exception/ConcurrencyException.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/ConfigurationException.php b/src/Exception/ConfigurationException.php index d0ced2d7..812521ee 100644 --- a/src/Exception/ConfigurationException.php +++ b/src/Exception/ConfigurationException.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/EventStoreException.php b/src/Exception/EventStoreException.php index 512ac1be..5f20d4fe 100644 --- a/src/Exception/EventStoreException.php +++ b/src/Exception/EventStoreException.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/ExtensionNotLoadedException.php b/src/Exception/ExtensionNotLoadedException.php index 54dfaa7c..060ced53 100644 --- a/src/Exception/ExtensionNotLoadedException.php +++ b/src/Exception/ExtensionNotLoadedException.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * 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 71cbe155..23e68d2f 100644 --- a/src/Exception/InvalidArgumentException.php +++ b/src/Exception/InvalidArgumentException.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/OutOfRangeException.php b/src/Exception/OutOfRangeException.php index d3a7dc4f..526c96e5 100644 --- a/src/Exception/OutOfRangeException.php +++ b/src/Exception/OutOfRangeException.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/ProjectionNotFound.php b/src/Exception/ProjectionNotFound.php index 7a82e44b..47a008eb 100644 --- a/src/Exception/ProjectionNotFound.php +++ b/src/Exception/ProjectionNotFound.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * 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 5cfe0734..f79fbbb1 100644 --- a/src/Exception/RuntimeException.php +++ b/src/Exception/RuntimeException.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/StreamExistsAlready.php b/src/Exception/StreamExistsAlready.php index f4054627..2fa4f097 100644 --- a/src/Exception/StreamExistsAlready.php +++ b/src/Exception/StreamExistsAlready.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/StreamNotFound.php b/src/Exception/StreamNotFound.php index 44f3093d..957d6db9 100644 --- a/src/Exception/StreamNotFound.php +++ b/src/Exception/StreamNotFound.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/TransactionAlreadyStarted.php b/src/Exception/TransactionAlreadyStarted.php index 1b98c8f3..eeac1cf8 100644 --- a/src/Exception/TransactionAlreadyStarted.php +++ b/src/Exception/TransactionAlreadyStarted.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * 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 e9c59975..6666a1b6 100644 --- a/src/Exception/TransactionNotStarted.php +++ b/src/Exception/TransactionNotStarted.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/InMemoryEventStore.php b/src/InMemoryEventStore.php index a6a16cf2..457fe9e7 100644 --- a/src/InMemoryEventStore.php +++ b/src/InMemoryEventStore.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Metadata/FieldType.php b/src/Metadata/FieldType.php index 6957926d..ca983d69 100644 --- a/src/Metadata/FieldType.php +++ b/src/Metadata/FieldType.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Metadata/MetadataEnricher.php b/src/Metadata/MetadataEnricher.php index 1da25c82..e9f07102 100644 --- a/src/Metadata/MetadataEnricher.php +++ b/src/Metadata/MetadataEnricher.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Metadata/MetadataEnricherAggregate.php b/src/Metadata/MetadataEnricherAggregate.php index b520e0c4..40bc0a6e 100644 --- a/src/Metadata/MetadataEnricherAggregate.php +++ b/src/Metadata/MetadataEnricherAggregate.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Metadata/MetadataEnricherPlugin.php b/src/Metadata/MetadataEnricherPlugin.php index 7398cee4..8479c08c 100644 --- a/src/Metadata/MetadataEnricherPlugin.php +++ b/src/Metadata/MetadataEnricherPlugin.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Metadata/MetadataMatcher.php b/src/Metadata/MetadataMatcher.php index a7a8d776..fc43366c 100644 --- a/src/Metadata/MetadataMatcher.php +++ b/src/Metadata/MetadataMatcher.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Metadata/Operator.php b/src/Metadata/Operator.php index b9ecf3f1..45904974 100644 --- a/src/Metadata/Operator.php +++ b/src/Metadata/Operator.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/NonTransactionalInMemoryEventStore.php b/src/NonTransactionalInMemoryEventStore.php index 69337435..7844ac50 100644 --- a/src/NonTransactionalInMemoryEventStore.php +++ b/src/NonTransactionalInMemoryEventStore.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Plugin/AbstractPlugin.php b/src/Plugin/AbstractPlugin.php index 8dac0c18..e392dc72 100644 --- a/src/Plugin/AbstractPlugin.php +++ b/src/Plugin/AbstractPlugin.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Plugin/Plugin.php b/src/Plugin/Plugin.php index 92fa5d49..f7e90526 100644 --- a/src/Plugin/Plugin.php +++ b/src/Plugin/Plugin.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Plugin/UpcastingPlugin.php b/src/Plugin/UpcastingPlugin.php index 3aabb44a..8da24b58 100644 --- a/src/Plugin/UpcastingPlugin.php +++ b/src/Plugin/UpcastingPlugin.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/AbstractReadModel.php b/src/Projection/AbstractReadModel.php index 1cd5a22a..dfcbc9e2 100644 --- a/src/Projection/AbstractReadModel.php +++ b/src/Projection/AbstractReadModel.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/InMemoryEventStoreProjector.php b/src/Projection/InMemoryEventStoreProjector.php index 583669bd..8961b51f 100644 --- a/src/Projection/InMemoryEventStoreProjector.php +++ b/src/Projection/InMemoryEventStoreProjector.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/InMemoryEventStoreQuery.php b/src/Projection/InMemoryEventStoreQuery.php index 34372721..dca07842 100644 --- a/src/Projection/InMemoryEventStoreQuery.php +++ b/src/Projection/InMemoryEventStoreQuery.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/InMemoryEventStoreReadModelProjector.php b/src/Projection/InMemoryEventStoreReadModelProjector.php index f22d8b2b..22d74871 100644 --- a/src/Projection/InMemoryEventStoreReadModelProjector.php +++ b/src/Projection/InMemoryEventStoreReadModelProjector.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/InMemoryProjectionManager.php b/src/Projection/InMemoryProjectionManager.php index 59f49cd6..4391eea3 100644 --- a/src/Projection/InMemoryProjectionManager.php +++ b/src/Projection/InMemoryProjectionManager.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/ProjectionManager.php b/src/Projection/ProjectionManager.php index ed3ffce5..d6646460 100644 --- a/src/Projection/ProjectionManager.php +++ b/src/Projection/ProjectionManager.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/ProjectionStatus.php b/src/Projection/ProjectionStatus.php index 5c68489f..986a312b 100644 --- a/src/Projection/ProjectionStatus.php +++ b/src/Projection/ProjectionStatus.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/Projector.php b/src/Projection/Projector.php index c8ec1d36..873068a9 100644 --- a/src/Projection/Projector.php +++ b/src/Projection/Projector.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/Query.php b/src/Projection/Query.php index f30efcf9..7b5cb9c0 100644 --- a/src/Projection/Query.php +++ b/src/Projection/Query.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/ReadModel.php b/src/Projection/ReadModel.php index 610f8d5d..f774fc35 100644 --- a/src/Projection/ReadModel.php +++ b/src/Projection/ReadModel.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Projection/ReadModelProjector.php b/src/Projection/ReadModelProjector.php index 1ae76b00..e2413a46 100644 --- a/src/Projection/ReadModelProjector.php +++ b/src/Projection/ReadModelProjector.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/ReadOnlyEventStore.php b/src/ReadOnlyEventStore.php index df1573ec..cb213dd0 100644 --- a/src/ReadOnlyEventStore.php +++ b/src/ReadOnlyEventStore.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/ReadOnlyEventStoreWrapper.php b/src/ReadOnlyEventStoreWrapper.php index f5721fc1..91a09d3d 100644 --- a/src/ReadOnlyEventStoreWrapper.php +++ b/src/ReadOnlyEventStoreWrapper.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Stream.php b/src/Stream.php index 55a5a99a..83dc6306 100644 --- a/src/Stream.php +++ b/src/Stream.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/StreamIterator/EmptyStreamIterator.php b/src/StreamIterator/EmptyStreamIterator.php index 59a53241..d1874511 100644 --- a/src/StreamIterator/EmptyStreamIterator.php +++ b/src/StreamIterator/EmptyStreamIterator.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/StreamIterator/InMemoryStreamIterator.php b/src/StreamIterator/InMemoryStreamIterator.php index e5859541..9dee7aa1 100644 --- a/src/StreamIterator/InMemoryStreamIterator.php +++ b/src/StreamIterator/InMemoryStreamIterator.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/StreamIterator/MergedStreamIterator.php b/src/StreamIterator/MergedStreamIterator.php index ca712895..5e2fa180 100644 --- a/src/StreamIterator/MergedStreamIterator.php +++ b/src/StreamIterator/MergedStreamIterator.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/StreamIterator/StreamIterator.php b/src/StreamIterator/StreamIterator.php index f41aa7a0..58e89361 100644 --- a/src/StreamIterator/StreamIterator.php +++ b/src/StreamIterator/StreamIterator.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/StreamName.php b/src/StreamName.php index ddc2e0fc..06b61fa8 100644 --- a/src/StreamName.php +++ b/src/StreamName.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/TransactionalActionEventEmitterEventStore.php b/src/TransactionalActionEventEmitterEventStore.php index 146e153e..cdddaf87 100644 --- a/src/TransactionalActionEventEmitterEventStore.php +++ b/src/TransactionalActionEventEmitterEventStore.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/TransactionalEventStore.php b/src/TransactionalEventStore.php index cccc2118..43a44968 100644 --- a/src/TransactionalEventStore.php +++ b/src/TransactionalEventStore.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Upcasting/NoOpEventUpcaster.php b/src/Upcasting/NoOpEventUpcaster.php index e3b13070..5492c18f 100644 --- a/src/Upcasting/NoOpEventUpcaster.php +++ b/src/Upcasting/NoOpEventUpcaster.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Upcasting/SingleEventUpcaster.php b/src/Upcasting/SingleEventUpcaster.php index 7a443635..c17c0cbc 100644 --- a/src/Upcasting/SingleEventUpcaster.php +++ b/src/Upcasting/SingleEventUpcaster.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Upcasting/Upcaster.php b/src/Upcasting/Upcaster.php index f3d792b0..4d6428ff 100644 --- a/src/Upcasting/Upcaster.php +++ b/src/Upcasting/Upcaster.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Upcasting/UpcasterChain.php b/src/Upcasting/UpcasterChain.php index f6a097b6..eb560acc 100644 --- a/src/Upcasting/UpcasterChain.php +++ b/src/Upcasting/UpcasterChain.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Util/ArrayCache.php b/src/Util/ArrayCache.php index 346422d7..accb519b 100644 --- a/src/Util/ArrayCache.php +++ b/src/Util/ArrayCache.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Util/Assertion.php b/src/Util/Assertion.php index bc07b00b..b562a73c 100644 --- a/src/Util/Assertion.php +++ b/src/Util/Assertion.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/AbstractEventStoreTest.php b/tests/AbstractEventStoreTest.php index f0b222ce..7cc712c0 100644 --- a/tests/AbstractEventStoreTest.php +++ b/tests/AbstractEventStoreTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/ActionEventEmitterEventStoreTest.php b/tests/ActionEventEmitterEventStoreTest.php index 972b647e..42e90071 100644 --- a/tests/ActionEventEmitterEventStoreTest.php +++ b/tests/ActionEventEmitterEventStoreTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/ActionEventEmitterEventStoreTestCase.php b/tests/ActionEventEmitterEventStoreTestCase.php index 3234582d..a8ac8c85 100644 --- a/tests/ActionEventEmitterEventStoreTestCase.php +++ b/tests/ActionEventEmitterEventStoreTestCase.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Container/InMemoryEventStoreFactoryTest.php b/tests/Container/InMemoryEventStoreFactoryTest.php index 884af274..e3652d81 100644 --- a/tests/Container/InMemoryEventStoreFactoryTest.php +++ b/tests/Container/InMemoryEventStoreFactoryTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Container/InMemoryProjectionManagerFactoryTest.php b/tests/Container/InMemoryProjectionManagerFactoryTest.php index 6f758caf..ce7b5e2f 100644 --- a/tests/Container/InMemoryProjectionManagerFactoryTest.php +++ b/tests/Container/InMemoryProjectionManagerFactoryTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/EventStoreTestStreamTrait.php b/tests/EventStoreTestStreamTrait.php index 3cbe2690..9c6dce76 100644 --- a/tests/EventStoreTestStreamTrait.php +++ b/tests/EventStoreTestStreamTrait.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Example/QuickStartTest.php b/tests/Example/QuickStartTest.php index afc4653c..6127ca44 100644 --- a/tests/Example/QuickStartTest.php +++ b/tests/Example/QuickStartTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/InMemoryEventStoreTest.php b/tests/InMemoryEventStoreTest.php index a8f1a3ab..b5b45719 100644 --- a/tests/InMemoryEventStoreTest.php +++ b/tests/InMemoryEventStoreTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Metadata/MetadataEnricherAggregateTest.php b/tests/Metadata/MetadataEnricherAggregateTest.php index f80d83b9..207b9df2 100644 --- a/tests/Metadata/MetadataEnricherAggregateTest.php +++ b/tests/Metadata/MetadataEnricherAggregateTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Metadata/MetadataEnricherPluginTest.php b/tests/Metadata/MetadataEnricherPluginTest.php index 3a6f0e2f..5d872d36 100644 --- a/tests/Metadata/MetadataEnricherPluginTest.php +++ b/tests/Metadata/MetadataEnricherPluginTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Metadata/MetadataMatcherTest.php b/tests/Metadata/MetadataMatcherTest.php index 1b6eb25a..618dd984 100644 --- a/tests/Metadata/MetadataMatcherTest.php +++ b/tests/Metadata/MetadataMatcherTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/EventLoggerPlugin.php b/tests/Mock/EventLoggerPlugin.php index c9ee9aaf..e53ac64c 100644 --- a/tests/Mock/EventLoggerPlugin.php +++ b/tests/Mock/EventLoggerPlugin.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/Post.php b/tests/Mock/Post.php index 9b5f94b1..b36578bd 100644 --- a/tests/Mock/Post.php +++ b/tests/Mock/Post.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/PostCreated.php b/tests/Mock/PostCreated.php index fe916c05..6167898d 100644 --- a/tests/Mock/PostCreated.php +++ b/tests/Mock/PostCreated.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/Product.php b/tests/Mock/Product.php index 0e63c9a2..01e19be0 100644 --- a/tests/Mock/Product.php +++ b/tests/Mock/Product.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/ReadModelMock.php b/tests/Mock/ReadModelMock.php index 2658cb74..07cfcc05 100644 --- a/tests/Mock/ReadModelMock.php +++ b/tests/Mock/ReadModelMock.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/TestDomainEvent.php b/tests/Mock/TestDomainEvent.php index 44f129e3..19826d38 100644 --- a/tests/Mock/TestDomainEvent.php +++ b/tests/Mock/TestDomainEvent.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/TestIteratorAggregate.php b/tests/Mock/TestIteratorAggregate.php index 703c9027..7e6f274c 100644 --- a/tests/Mock/TestIteratorAggregate.php +++ b/tests/Mock/TestIteratorAggregate.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/User.php b/tests/Mock/User.php index 67856ad1..782bafa2 100644 --- a/tests/Mock/User.php +++ b/tests/Mock/User.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/UserCreated.php b/tests/Mock/UserCreated.php index 46fbe629..2c6020d1 100644 --- a/tests/Mock/UserCreated.php +++ b/tests/Mock/UserCreated.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Mock/UsernameChanged.php b/tests/Mock/UsernameChanged.php index efb3b9f2..51101cfc 100644 --- a/tests/Mock/UsernameChanged.php +++ b/tests/Mock/UsernameChanged.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/NonTransactionalInMemoryEventStoreTest.php b/tests/NonTransactionalInMemoryEventStoreTest.php index da221ac5..79ba8e49 100644 --- a/tests/NonTransactionalInMemoryEventStoreTest.php +++ b/tests/NonTransactionalInMemoryEventStoreTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Plugin/PluginManagerTest.php b/tests/Plugin/PluginManagerTest.php index ba2d66c9..eb990c6b 100644 --- a/tests/Plugin/PluginManagerTest.php +++ b/tests/Plugin/PluginManagerTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Plugin/UpcastingPluginTest.php b/tests/Plugin/UpcastingPluginTest.php index 5a7510d2..d85eeda4 100644 --- a/tests/Plugin/UpcastingPluginTest.php +++ b/tests/Plugin/UpcastingPluginTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/AbstractEventStoreProjectorTest.php b/tests/Projection/AbstractEventStoreProjectorTest.php index 7af584f1..59887c18 100644 --- a/tests/Projection/AbstractEventStoreProjectorTest.php +++ b/tests/Projection/AbstractEventStoreProjectorTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/AbstractEventStoreQueryTest.php b/tests/Projection/AbstractEventStoreQueryTest.php index e65947d2..8893900d 100644 --- a/tests/Projection/AbstractEventStoreQueryTest.php +++ b/tests/Projection/AbstractEventStoreQueryTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/AbstractEventStoreReadModelProjectorTest.php b/tests/Projection/AbstractEventStoreReadModelProjectorTest.php index ca611fb1..d8a7a743 100644 --- a/tests/Projection/AbstractEventStoreReadModelProjectorTest.php +++ b/tests/Projection/AbstractEventStoreReadModelProjectorTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/AbstractProjectionManagerTest.php b/tests/Projection/AbstractProjectionManagerTest.php index 0030226e..46261ed4 100644 --- a/tests/Projection/AbstractProjectionManagerTest.php +++ b/tests/Projection/AbstractProjectionManagerTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/InMemoryEventStoreProjectorTest.php b/tests/Projection/InMemoryEventStoreProjectorTest.php index bf937135..034de242 100644 --- a/tests/Projection/InMemoryEventStoreProjectorTest.php +++ b/tests/Projection/InMemoryEventStoreProjectorTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/InMemoryEventStoreQueryTest.php b/tests/Projection/InMemoryEventStoreQueryTest.php index d2a744b6..516c6b40 100644 --- a/tests/Projection/InMemoryEventStoreQueryTest.php +++ b/tests/Projection/InMemoryEventStoreQueryTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/InMemoryEventStoreReadModelProjectorTest.php b/tests/Projection/InMemoryEventStoreReadModelProjectorTest.php index b660aab1..9b1da04f 100644 --- a/tests/Projection/InMemoryEventStoreReadModelProjectorTest.php +++ b/tests/Projection/InMemoryEventStoreReadModelProjectorTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/InMemoryProjectionManagerTest.php b/tests/Projection/InMemoryProjectionManagerTest.php index 04af793a..7a40659d 100644 --- a/tests/Projection/InMemoryProjectionManagerTest.php +++ b/tests/Projection/InMemoryProjectionManagerTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/isolated-long-running-projection.php b/tests/Projection/isolated-long-running-projection.php index dfe754e2..f54c36c9 100755 --- a/tests/Projection/isolated-long-running-projection.php +++ b/tests/Projection/isolated-long-running-projection.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/isolated-long-running-query.php b/tests/Projection/isolated-long-running-query.php index 7a865d3c..e7805e0d 100755 --- a/tests/Projection/isolated-long-running-query.php +++ b/tests/Projection/isolated-long-running-query.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/isolated-long-running-read-model-projection.php b/tests/Projection/isolated-long-running-read-model-projection.php index 6c62a689..62dfdcde 100755 --- a/tests/Projection/isolated-long-running-read-model-projection.php +++ b/tests/Projection/isolated-long-running-read-model-projection.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/isolated-projection.php b/tests/Projection/isolated-projection.php index 22e2127f..f1f261ea 100755 --- a/tests/Projection/isolated-projection.php +++ b/tests/Projection/isolated-projection.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Projection/isolated-read-model-projection.php b/tests/Projection/isolated-read-model-projection.php index 34720a39..0a496e07 100755 --- a/tests/Projection/isolated-read-model-projection.php +++ b/tests/Projection/isolated-read-model-projection.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/ReadOnlyEventStoreWrapperTest.php b/tests/ReadOnlyEventStoreWrapperTest.php index 3d2603de..0b4762eb 100644 --- a/tests/ReadOnlyEventStoreWrapperTest.php +++ b/tests/ReadOnlyEventStoreWrapperTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/StreamIterator/AbstractStreamIteratorTest.php b/tests/StreamIterator/AbstractStreamIteratorTest.php index 1a0a06d6..afd8b3c1 100644 --- a/tests/StreamIterator/AbstractStreamIteratorTest.php +++ b/tests/StreamIterator/AbstractStreamIteratorTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/StreamIterator/EmptyStreamIteratorTest.php b/tests/StreamIterator/EmptyStreamIteratorTest.php index c36471f7..17175f2e 100644 --- a/tests/StreamIterator/EmptyStreamIteratorTest.php +++ b/tests/StreamIterator/EmptyStreamIteratorTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/StreamIterator/InMemoryStreamIteratorTest.php b/tests/StreamIterator/InMemoryStreamIteratorTest.php index 59881668..026f8ae5 100644 --- a/tests/StreamIterator/InMemoryStreamIteratorTest.php +++ b/tests/StreamIterator/InMemoryStreamIteratorTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/StreamIterator/MergedStreamIteratorTest.php b/tests/StreamIterator/MergedStreamIteratorTest.php index b0e1ca7a..7a06972f 100644 --- a/tests/StreamIterator/MergedStreamIteratorTest.php +++ b/tests/StreamIterator/MergedStreamIteratorTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/StreamNameTest.php b/tests/StreamNameTest.php index 0ce48a9a..aa613f73 100644 --- a/tests/StreamNameTest.php +++ b/tests/StreamNameTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/TransactionalActionEventEmitterEventStoreTest.php b/tests/TransactionalActionEventEmitterEventStoreTest.php index 9f333789..bec12de0 100644 --- a/tests/TransactionalActionEventEmitterEventStoreTest.php +++ b/tests/TransactionalActionEventEmitterEventStoreTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/TransactionalEventStoreTestTrait.php b/tests/TransactionalEventStoreTestTrait.php index 4df4f811..b7dbe6f8 100644 --- a/tests/TransactionalEventStoreTestTrait.php +++ b/tests/TransactionalEventStoreTestTrait.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Upcasting/NoOpEventUpcasterTest.php b/tests/Upcasting/NoOpEventUpcasterTest.php index f2424d00..91a7b8c2 100644 --- a/tests/Upcasting/NoOpEventUpcasterTest.php +++ b/tests/Upcasting/NoOpEventUpcasterTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Upcasting/SingleEventUpcasterTest.php b/tests/Upcasting/SingleEventUpcasterTest.php index d99b50a6..6e9931d2 100644 --- a/tests/Upcasting/SingleEventUpcasterTest.php +++ b/tests/Upcasting/SingleEventUpcasterTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Upcasting/UpcasterChainTest.php b/tests/Upcasting/UpcasterChainTest.php index 9df9c813..3b4008f9 100644 --- a/tests/Upcasting/UpcasterChainTest.php +++ b/tests/Upcasting/UpcasterChainTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/Upcasting/UpcastingIteratorTest.php b/tests/Upcasting/UpcastingIteratorTest.php index f7bf4347..e73947d1 100644 --- a/tests/Upcasting/UpcastingIteratorTest.php +++ b/tests/Upcasting/UpcastingIteratorTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. @@ -52,12 +52,8 @@ public function it_iterates(): void $message4->metadata()->willReturn(['foo' => 'baz'])->shouldBeCalled(); $message4 = $message4->reveal(); - $iterator = new class([ - $message1, - $message2, - $message3, - $message4, - ]) extends \ArrayIterator implements StreamIterator {}; + $iterator = new class([$message1, $message2, $message3, $message4]) extends \ArrayIterator implements StreamIterator { + }; $upcastingIterator = new UpcastingIterator($this->createUpcaster(), $iterator); @@ -94,7 +90,8 @@ public function it_iterates_on_iterator_with_removed_messages_only(): void $message->metadata()->willReturn(['foo' => 'baz'])->shouldBeCalled(); $message = $message->reveal(); - $iterator = new class([$message]) extends \ArrayIterator implements StreamIterator {}; + $iterator = new class([$message]) extends \ArrayIterator implements StreamIterator { + }; $upcastingIterator = new UpcastingIterator($this->createUpcaster(), $iterator); @@ -108,7 +105,8 @@ public function it_iterates_on_iterator_with_removed_messages_only(): void */ public function it_iterates_over_array_iterator(): void { - $iterator = new class() extends \ArrayIterator implements StreamIterator {};; + $iterator = new class() extends \ArrayIterator implements StreamIterator { + }; $upcastingIterator = new UpcastingIterator($this->createUpcaster(), $iterator); diff --git a/tests/Util/ArrayCacheTest.php b/tests/Util/ArrayCacheTest.php index f938e5a2..a297914b 100644 --- a/tests/Util/ArrayCacheTest.php +++ b/tests/Util/ArrayCacheTest.php @@ -2,8 +2,8 @@ /** * This file is part of prooph/event-store. - * (c) 2014-2019 prooph software GmbH - * (c) 2015-2019 Sascha-Oliver Prolic + * (c) 2014-2020 prooph software GmbH + * (c) 2015-2020 Sascha-Oliver Prolic * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code.