Skip to content

Commit

Permalink
feat: makes Date and DateTimeRFC not final
Browse files Browse the repository at this point in the history
  • Loading branch information
matiux committed Nov 18, 2022
1 parent 3e95112 commit 03224c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Matiux/DDDStarterPack/Type/Date.php
Expand Up @@ -4,7 +4,7 @@

namespace DDDStarterPack\Type;

final class Date extends \DateTimeImmutable
class Date extends \DateTimeImmutable
{
public const FORMAT = 'Y-m-d';

Expand Down
2 changes: 1 addition & 1 deletion src/Matiux/DDDStarterPack/Type/DateTimeRFC.php
Expand Up @@ -4,7 +4,7 @@

namespace DDDStarterPack\Type;

final class DateTimeRFC extends \DateTimeImmutable
class DateTimeRFC extends \DateTimeImmutable
{
/**
* Based on DateTimeInterface::RFC3339_EXTENDED = Y-m-d\TH:i:s.vP
Expand Down

0 comments on commit 03224c4

Please sign in to comment.