silverstripe-spamprotection/code/Spamable.php

12 lines
174 B
PHP

<?php
/**
* This interface acts an template for setting up a spam callback class
*/
interface Spamable {
function markAsSpam($form);
function markAsHam($form):
}
?>