generated from Nodarx/template
10 lines
139 B
PHP
10 lines
139 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command;
|
|
|
|
interface Continuable
|
|
{
|
|
public function continue(): string;
|
|
} |