generated from Nodarx/template
13 lines
215 B
PHP
13 lines
215 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command;
|
|
|
|
final readonly class ExpungeCommand extends Command
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('EXPUNGE');
|
|
}
|
|
} |