mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-17 11:51:31 +00:00
8 lines
88 B
PHP
8 lines
88 B
PHP
<?php namespace Sieve;
|
|
|
|
interface SieveDumpable
|
|
{
|
|
function dump();
|
|
function text();
|
|
}
|