silverstripe-spamprotection/code/Spamable.php

12 lines
174 B
PHP
Raw Normal View History

2009-02-03 22:29:55 +01:00
<?php
/**
* This interface acts an template for setting up a spam callback class
*/
interface Spamable {
function markAsSpam($form);
function markAsHam($form):
}
?>