mirror of
https://github.com/silverstripe/silverstripe-spamprotection.git
synced 2024-10-22 14:05:59 +02:00
12 lines
174 B
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):
|
|
|
|
}
|
|
?>
|