Skip to content

Commit dce7b84

Browse files
committed
Remove mark as final
1 parent b833dbc commit dce7b84

File tree

24 files changed

+24
-24
lines changed

24 files changed

+24
-24
lines changed

src/Content/Description.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
*
1414
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1515
*/
16-
final class Description extends StringLiteral
16+
class Description extends StringLiteral
1717
{
1818
}

src/Content/Tag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
*
1414
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1515
*/
16-
final class Tag extends StringLiteral
16+
class Tag extends StringLiteral
1717
{
1818
}

src/Content/Title.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
*
1414
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1515
*/
16-
final class Title extends StringLiteral
16+
class Title extends StringLiteral
1717
{
1818
}

src/Geography/Coordinate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1616
*/
17-
final class Coordinate implements ValueObjectInterface
17+
class Coordinate implements ValueObjectInterface
1818
{
1919
/**
2020
* @var int min value for latitude

src/Identity/Email.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1616
*/
17-
final class Email extends StringLiteral
17+
class Email extends StringLiteral
1818
{
1919
/**
2020
* @param string $value

src/Identity/Id.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1818
*/
19-
final class Id extends StringLiteral
19+
class Id extends StringLiteral
2020
{
2121
/**
2222
* @param string $value

src/Identity/Network.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1616
*/
17-
final class Network implements ValueObjectInterface
17+
class Network implements ValueObjectInterface
1818
{
1919
/**
2020
* @var string

src/Identity/Phone.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1616
*/
17-
final class Phone implements ValueObjectInterface
17+
class Phone implements ValueObjectInterface
1818
{
1919
public const PATTERN_COUNTRY = "/^[0-9]{1,3}$/";
2020
public const PATTERN_NUMBER = "/^[0-9]{10}$/";

src/Identity/Username.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1616
*/
17-
final class Username extends StringLiteral
17+
class Username extends StringLiteral
1818
{
1919
public const PATTERN_USERNAME = '/^([A-Za-z0-9]{5,31})$/';
2020

src/Money/Currency.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* @author Maxim Vorozhtsov <myks1992@mail.ru>
1515
*/
16-
final class Currency extends Enum
16+
class Currency extends Enum
1717
{
1818
public const AED = 'AED';
1919
public const AFN = 'AFN';

0 commit comments

Comments
 (0)