Skip to content

Commit 1317629

Browse files
committed
Enforce stringable
1 parent 2dd09b5 commit 1317629

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Connection/RawQueryValue.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
namespace DirectoryTree\ImapEngine\Connection;
44

5+
use Stringable;
6+
57
class RawQueryValue
68
{
79
/**
810
* Constructor.
911
*/
1012
public function __construct(
11-
public readonly mixed $value
13+
public readonly Stringable|string $value
1214
) {}
1315
}

0 commit comments

Comments
 (0)