mirror of
https://github.com/silverstripe/silverstripe-spamprotection.git
synced 2024-10-22 14:05:59 +02:00
17 lines
338 B
PHP
17 lines
338 B
PHP
<?php
|
|
|
|
/**
|
|
* @package spamprotection
|
|
*/
|
|
class FormSpamProtectionExtensionTest_BazProtector implements SpamProtector, TestOnly
|
|
{
|
|
public function getFormField($name = null, $title = null, $value = null)
|
|
{
|
|
return new TextField($name, $title, $value);
|
|
}
|
|
|
|
public function setFieldMapping($fieldMapping)
|
|
{
|
|
}
|
|
}
|