Skip to content

Commit 4fa1e4d

Browse files
committed
Explicit implements Stringable
1 parent 21a5cc2 commit 4fa1e4d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Bytes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace gapple\StructuredFields;
66

7-
class Bytes
7+
class Bytes implements \Stringable
88
{
99
public function __construct(private readonly string $value)
1010
{

src/DisplayString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace gapple\StructuredFields;
66

7-
class DisplayString
7+
class DisplayString implements \Stringable
88
{
99
public function __construct(private readonly string $value)
1010
{

src/Token.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace gapple\StructuredFields;
66

7-
class Token
7+
class Token implements \Stringable
88
{
99
public function __construct(private readonly string $value)
1010
{

0 commit comments

Comments
 (0)