Skip to content

Commit e155547

Browse files
committed
Fix inheritance
1 parent a386bda commit e155547

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Type/PositiveIntegerValue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* @package simplesaml/xml-common
1212
*/
13-
class PositiveIntegerValue extends IntegerValue
13+
class PositiveIntegerValue extends NonNegativeIntegerValue
1414
{
1515
/** @var string */
1616
public const SCHEMA_TYPE = 'positiveInteger';

src/Type/UnsignedByteValue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* @package simplesaml/xml-common
1212
*/
13-
class UnsignedByteValue extends IntegerValue
13+
class UnsignedByteValue extends NonNegativeIntegerValue
1414
{
1515
/** @var string */
1616
public const SCHEMA_TYPE = 'unsignedByte';

src/Type/UnsignedIntValue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* @package simplesaml/xml-common
1212
*/
13-
class UnsignedIntValue extends IntegerValue
13+
class UnsignedIntValue extends NonNegativeIntegerValue
1414
{
1515
/** @var string */
1616
public const SCHEMA_TYPE = 'unsignedInt';

src/Type/UnsignedLongValue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* @package simplesaml/xml-common
1212
*/
13-
class UnsignedLongValue extends IntegerValue
13+
class UnsignedLongValue extends NonNegativeIntegerValue
1414
{
1515
/** @var string */
1616
public const SCHEMA_TYPE = 'unsignedLong';

src/Type/UnsignedShortValue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* @package simplesaml/xml-common
1212
*/
13-
class UnsignedShortValue extends IntegerValue
13+
class UnsignedShortValue extends NonNegativeIntegerValue
1414
{
1515
/** @var string */
1616
public const SCHEMA_TYPE = 'unsignedShort';

0 commit comments

Comments
 (0)