generated from Nodarx/template
13 lines
198 B
PHP
13 lines
198 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command\Argument\Search;
|
|
|
|
class All implements Criteria
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return 'ALL';
|
|
}
|
|
} |