generated from Nodarx/template
16 lines
292 B
PHP
16 lines
292 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command\Argument\Search;
|
|
|
|
final readonly class Smaller implements Criteria
|
|
{
|
|
public function __construct(private int $size) {}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return 'SMALLER ' . $this->size;
|
|
}
|
|
}
|