silverstripe-spamprotection/code/Spamable.php
2009-02-03 21:29:55 +00:00

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):
}
?>