Skip to content

Commit

Permalink
Unify wording of "@license GPL-2.0+" lines
Browse files Browse the repository at this point in the history
  • Loading branch information
thiemowmde committed May 16, 2017
1 parent d2892df commit ba97abc
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion src/Deserializers/Deserializer.php
Expand Up @@ -7,7 +7,7 @@
/**
* @since 1.0
*
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
*/
interface Deserializer {
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/DispatchableDeserializer.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/DispatchingDeserializer.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/Exceptions/DeserializationException.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/Exceptions/InvalidAttributeException.php
Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/Exceptions/MissingAttributeException.php
Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/Exceptions/MissingTypeException.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/Exceptions/UnsupportedTypeException.php
Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/StrategicDeserializer.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/TypedDeserializationStrategy.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Deserializers/TypedObjectDeserializer.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Serializers/DispatchableSerializer.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Serializers/DispatchingSerializer.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Serializers/Exceptions/SerializationException.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Serializers/Exceptions/UnsupportedObjectException.php
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Serializers/Serializer.php
Expand Up @@ -7,7 +7,7 @@
/**
* @since 1.0
*
* @licence GNU GPL v2+
* @license GPL-2.0+
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
*/
interface Serializer {
Expand Down
Expand Up @@ -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 {
Expand Down
Expand Up @@ -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
*/
Expand Down
Expand Up @@ -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
*/
Expand Down
Expand Up @@ -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
*/
Expand Down
Expand Up @@ -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
*/
Expand Down
Expand Up @@ -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
*/
Expand Down
Expand Up @@ -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 {
Expand Down
Expand Up @@ -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 {
Expand Down
Expand Up @@ -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 {
Expand Down

0 comments on commit ba97abc

Please sign in to comment.