From ba97abcd9504815cc4ce87fd37039372c3d04252 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thiemo=20M=C3=A4ttig?= Date: Mon, 15 May 2017 11:35:37 +0200 Subject: [PATCH] Unify wording of "@license GPL-2.0+" lines --- src/Deserializers/Deserializer.php | 2 +- src/Deserializers/DispatchableDeserializer.php | 2 +- src/Deserializers/DispatchingDeserializer.php | 2 +- src/Deserializers/Exceptions/DeserializationException.php | 2 +- src/Deserializers/Exceptions/InvalidAttributeException.php | 2 +- src/Deserializers/Exceptions/MissingAttributeException.php | 2 +- src/Deserializers/Exceptions/MissingTypeException.php | 2 +- src/Deserializers/Exceptions/UnsupportedTypeException.php | 2 +- src/Deserializers/StrategicDeserializer.php | 2 +- src/Deserializers/TypedDeserializationStrategy.php | 2 +- src/Deserializers/TypedObjectDeserializer.php | 2 +- src/Serializers/DispatchableSerializer.php | 2 +- src/Serializers/DispatchingSerializer.php | 2 +- src/Serializers/Exceptions/SerializationException.php | 2 +- src/Serializers/Exceptions/UnsupportedObjectException.php | 2 +- src/Serializers/Serializer.php | 2 +- .../Deserializers/Tests/Phpunit/DispatchingDeserializerTest.php | 2 +- .../Tests/Phpunit/Exceptions/DeserializationExceptionTest.php | 2 +- .../Tests/Phpunit/Exceptions/InvalidAttributeExceptionTest.php | 2 +- .../Tests/Phpunit/Exceptions/MissingAttributeExceptionTest.php | 2 +- .../Tests/Phpunit/Exceptions/MissingTypeExceptionTest.php | 2 +- .../Tests/Phpunit/Exceptions/UnsupportedTypeExceptionTest.php | 2 +- .../Deserializers/Tests/Phpunit/TypedObjectDeserializerTest.php | 2 +- test/Serializers/Tests/Phpunit/DispatchingSerializerTest.php | 2 +- .../Tests/Phpunit/Exceptions/UnsupportedObjectExceptionTest.php | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/src/Deserializers/Deserializer.php b/src/Deserializers/Deserializer.php index e67bf69..97ea287 100644 --- a/src/Deserializers/Deserializer.php +++ b/src/Deserializers/Deserializer.php @@ -7,7 +7,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ interface Deserializer { diff --git a/src/Deserializers/DispatchableDeserializer.php b/src/Deserializers/DispatchableDeserializer.php index 2b70293..5e45a8e 100644 --- a/src/Deserializers/DispatchableDeserializer.php +++ b/src/Deserializers/DispatchableDeserializer.php @@ -5,7 +5,7 @@ /** * @since 3.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ interface DispatchableDeserializer extends Deserializer { diff --git a/src/Deserializers/DispatchingDeserializer.php b/src/Deserializers/DispatchingDeserializer.php index 0e336fa..04d852b 100644 --- a/src/Deserializers/DispatchingDeserializer.php +++ b/src/Deserializers/DispatchingDeserializer.php @@ -8,7 +8,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class DispatchingDeserializer implements DispatchableDeserializer { diff --git a/src/Deserializers/Exceptions/DeserializationException.php b/src/Deserializers/Exceptions/DeserializationException.php index 279ccb4..df8dce8 100644 --- a/src/Deserializers/Exceptions/DeserializationException.php +++ b/src/Deserializers/Exceptions/DeserializationException.php @@ -8,7 +8,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class DeserializationException extends RuntimeException { diff --git a/src/Deserializers/Exceptions/InvalidAttributeException.php b/src/Deserializers/Exceptions/InvalidAttributeException.php index 0197bc2..15e1356 100644 --- a/src/Deserializers/Exceptions/InvalidAttributeException.php +++ b/src/Deserializers/Exceptions/InvalidAttributeException.php @@ -10,7 +10,7 @@ * * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > * @author Thiemo Mättig */ diff --git a/src/Deserializers/Exceptions/MissingAttributeException.php b/src/Deserializers/Exceptions/MissingAttributeException.php index 1120eea..9c04311 100644 --- a/src/Deserializers/Exceptions/MissingAttributeException.php +++ b/src/Deserializers/Exceptions/MissingAttributeException.php @@ -9,7 +9,7 @@ * * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > * @author Thiemo Mättig */ diff --git a/src/Deserializers/Exceptions/MissingTypeException.php b/src/Deserializers/Exceptions/MissingTypeException.php index fa1c817..c4ca4c8 100644 --- a/src/Deserializers/Exceptions/MissingTypeException.php +++ b/src/Deserializers/Exceptions/MissingTypeException.php @@ -7,7 +7,7 @@ * * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class MissingTypeException extends DeserializationException { diff --git a/src/Deserializers/Exceptions/UnsupportedTypeException.php b/src/Deserializers/Exceptions/UnsupportedTypeException.php index a196091..0ccfa7e 100644 --- a/src/Deserializers/Exceptions/UnsupportedTypeException.php +++ b/src/Deserializers/Exceptions/UnsupportedTypeException.php @@ -9,7 +9,7 @@ * * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > * @author Thiemo Mättig */ diff --git a/src/Deserializers/StrategicDeserializer.php b/src/Deserializers/StrategicDeserializer.php index bf3563e..34005c9 100644 --- a/src/Deserializers/StrategicDeserializer.php +++ b/src/Deserializers/StrategicDeserializer.php @@ -5,7 +5,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class StrategicDeserializer extends TypedObjectDeserializer { diff --git a/src/Deserializers/TypedDeserializationStrategy.php b/src/Deserializers/TypedDeserializationStrategy.php index 3c45af0..4e4ff3d 100644 --- a/src/Deserializers/TypedDeserializationStrategy.php +++ b/src/Deserializers/TypedDeserializationStrategy.php @@ -9,7 +9,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ abstract class TypedDeserializationStrategy { diff --git a/src/Deserializers/TypedObjectDeserializer.php b/src/Deserializers/TypedObjectDeserializer.php index 61edb39..b5765f2 100644 --- a/src/Deserializers/TypedObjectDeserializer.php +++ b/src/Deserializers/TypedObjectDeserializer.php @@ -10,7 +10,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ abstract class TypedObjectDeserializer implements DispatchableDeserializer { diff --git a/src/Serializers/DispatchableSerializer.php b/src/Serializers/DispatchableSerializer.php index 252ea17..4cbe776 100644 --- a/src/Serializers/DispatchableSerializer.php +++ b/src/Serializers/DispatchableSerializer.php @@ -5,7 +5,7 @@ /** * @since 3.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ interface DispatchableSerializer extends Serializer { diff --git a/src/Serializers/DispatchingSerializer.php b/src/Serializers/DispatchingSerializer.php index d869fdb..da7ae68 100644 --- a/src/Serializers/DispatchingSerializer.php +++ b/src/Serializers/DispatchingSerializer.php @@ -8,7 +8,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class DispatchingSerializer implements DispatchableSerializer { diff --git a/src/Serializers/Exceptions/SerializationException.php b/src/Serializers/Exceptions/SerializationException.php index 38fcf55..8f65b44 100644 --- a/src/Serializers/Exceptions/SerializationException.php +++ b/src/Serializers/Exceptions/SerializationException.php @@ -7,7 +7,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class SerializationException extends RuntimeException { diff --git a/src/Serializers/Exceptions/UnsupportedObjectException.php b/src/Serializers/Exceptions/UnsupportedObjectException.php index 0dabc5b..42d0f62 100644 --- a/src/Serializers/Exceptions/UnsupportedObjectException.php +++ b/src/Serializers/Exceptions/UnsupportedObjectException.php @@ -7,7 +7,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class UnsupportedObjectException extends SerializationException { diff --git a/src/Serializers/Serializer.php b/src/Serializers/Serializer.php index 7265820..14979b4 100644 --- a/src/Serializers/Serializer.php +++ b/src/Serializers/Serializer.php @@ -7,7 +7,7 @@ /** * @since 1.0 * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ interface Serializer { diff --git a/test/Deserializers/Tests/Phpunit/DispatchingDeserializerTest.php b/test/Deserializers/Tests/Phpunit/DispatchingDeserializerTest.php index b6dc8c1..f2104e7 100644 --- a/test/Deserializers/Tests/Phpunit/DispatchingDeserializerTest.php +++ b/test/Deserializers/Tests/Phpunit/DispatchingDeserializerTest.php @@ -7,7 +7,7 @@ /** * @covers Deserializers\DispatchingDeserializer * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class DispatchingDeserializerTest extends \PHPUnit_Framework_TestCase { diff --git a/test/Deserializers/Tests/Phpunit/Exceptions/DeserializationExceptionTest.php b/test/Deserializers/Tests/Phpunit/Exceptions/DeserializationExceptionTest.php index 3465a3e..ba86ba5 100644 --- a/test/Deserializers/Tests/Phpunit/Exceptions/DeserializationExceptionTest.php +++ b/test/Deserializers/Tests/Phpunit/Exceptions/DeserializationExceptionTest.php @@ -9,7 +9,7 @@ /** * @covers Deserializers\Exceptions\DeserializationException * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > * @author Thiemo Mättig */ diff --git a/test/Deserializers/Tests/Phpunit/Exceptions/InvalidAttributeExceptionTest.php b/test/Deserializers/Tests/Phpunit/Exceptions/InvalidAttributeExceptionTest.php index d9631a7..4622e1e 100644 --- a/test/Deserializers/Tests/Phpunit/Exceptions/InvalidAttributeExceptionTest.php +++ b/test/Deserializers/Tests/Phpunit/Exceptions/InvalidAttributeExceptionTest.php @@ -9,7 +9,7 @@ /** * @covers Deserializers\Exceptions\InvalidAttributeException * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > * @author Thiemo Mättig */ diff --git a/test/Deserializers/Tests/Phpunit/Exceptions/MissingAttributeExceptionTest.php b/test/Deserializers/Tests/Phpunit/Exceptions/MissingAttributeExceptionTest.php index 9ffe7d6..d22b81b 100644 --- a/test/Deserializers/Tests/Phpunit/Exceptions/MissingAttributeExceptionTest.php +++ b/test/Deserializers/Tests/Phpunit/Exceptions/MissingAttributeExceptionTest.php @@ -9,7 +9,7 @@ /** * @covers Deserializers\Exceptions\MissingAttributeException * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > * @author Thiemo Mättig */ diff --git a/test/Deserializers/Tests/Phpunit/Exceptions/MissingTypeExceptionTest.php b/test/Deserializers/Tests/Phpunit/Exceptions/MissingTypeExceptionTest.php index 36e823c..6e17f4f 100644 --- a/test/Deserializers/Tests/Phpunit/Exceptions/MissingTypeExceptionTest.php +++ b/test/Deserializers/Tests/Phpunit/Exceptions/MissingTypeExceptionTest.php @@ -9,7 +9,7 @@ /** * @covers Deserializers\Exceptions\MissingTypeException * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > * @author Thiemo Mättig */ diff --git a/test/Deserializers/Tests/Phpunit/Exceptions/UnsupportedTypeExceptionTest.php b/test/Deserializers/Tests/Phpunit/Exceptions/UnsupportedTypeExceptionTest.php index 2b882fe..b82b00d 100644 --- a/test/Deserializers/Tests/Phpunit/Exceptions/UnsupportedTypeExceptionTest.php +++ b/test/Deserializers/Tests/Phpunit/Exceptions/UnsupportedTypeExceptionTest.php @@ -9,7 +9,7 @@ /** * @covers Deserializers\Exceptions\UnsupportedTypeException * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > * @author Thiemo Mättig */ diff --git a/test/Deserializers/Tests/Phpunit/TypedObjectDeserializerTest.php b/test/Deserializers/Tests/Phpunit/TypedObjectDeserializerTest.php index 03d10b8..a76c062 100644 --- a/test/Deserializers/Tests/Phpunit/TypedObjectDeserializerTest.php +++ b/test/Deserializers/Tests/Phpunit/TypedObjectDeserializerTest.php @@ -7,7 +7,7 @@ /** * @covers Deserializers\TypedObjectDeserializer * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class TypedObjectDeserializerTest extends \PHPUnit_Framework_TestCase { diff --git a/test/Serializers/Tests/Phpunit/DispatchingSerializerTest.php b/test/Serializers/Tests/Phpunit/DispatchingSerializerTest.php index 956cabd..bd23420 100644 --- a/test/Serializers/Tests/Phpunit/DispatchingSerializerTest.php +++ b/test/Serializers/Tests/Phpunit/DispatchingSerializerTest.php @@ -9,7 +9,7 @@ * * @group Serialization * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class DispatchingSerializerTest extends \PHPUnit_Framework_TestCase { diff --git a/test/Serializers/Tests/Phpunit/Exceptions/UnsupportedObjectExceptionTest.php b/test/Serializers/Tests/Phpunit/Exceptions/UnsupportedObjectExceptionTest.php index e6ccb40..ea31189 100644 --- a/test/Serializers/Tests/Phpunit/Exceptions/UnsupportedObjectExceptionTest.php +++ b/test/Serializers/Tests/Phpunit/Exceptions/UnsupportedObjectExceptionTest.php @@ -9,7 +9,7 @@ * * @group Serialization * - * @licence GNU GPL v2+ + * @license GPL-2.0+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class UnsupportedObjectExceptionTest extends \PHPUnit_Framework_TestCase {