mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-16 10:59:39 +02:00
8 lines
88 B
PHP
8 lines
88 B
PHP
<?php namespace Sieve;
|
|
|
|
interface SieveDumpable
|
|
{
|
|
function dump();
|
|
function text();
|
|
}
|