mirror of
https://github.com/itflow-org/itflow
synced 2026-03-11 08:14:52 +00:00
16 lines
223 B
PHP
16 lines
223 B
PHP
<?php
|
|
|
|
namespace DirectoryTree\ImapEngine\Connection;
|
|
|
|
use Stringable;
|
|
|
|
class RawQueryValue
|
|
{
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
public function __construct(
|
|
public readonly Stringable|string $value
|
|
) {}
|
|
}
|