Skip to content

Commit

Permalink
Remove psalm-immutable from readonly classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Kolb committed Jun 9, 2024
1 parent d9f1a50 commit fcec99c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/Date.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace DigitalCraftsman\DateTimePrecision;

/** @psalm-immutable */
final readonly class Date implements \Stringable
{
private const DATE_FORMAT = 'Y-m-d';
Expand Down
1 change: 0 additions & 1 deletion src/Month.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace DigitalCraftsman\DateTimePrecision;

/** @psalm-immutable */
final readonly class Month implements \Stringable
{
private const MONTH_FORMAT = 'Y-m';
Expand Down
1 change: 0 additions & 1 deletion src/Time.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace DigitalCraftsman\DateTimePrecision;

/** @psalm-immutable */
final readonly class Time implements \Stringable
{
private const TIME_FORMAT = 'H:i:s.u';
Expand Down
1 change: 0 additions & 1 deletion src/Year.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace DigitalCraftsman\DateTimePrecision;

/** @psalm-immutable */
final readonly class Year
{
// -- Construction
Expand Down

0 comments on commit fcec99c

Please sign in to comment.