silverstripe-framework/tests/php/Forms/EmailFieldTest/TestValidator.php
2016-11-23 19:25:12 +13:00

23 lines
336 B
PHP

<?php
namespace SilverStripe\Forms\Tests\EmailFieldTest;
use Exception;
use SilverStripe\Forms\Validator;
class TestValidator extends Validator
{
public function validationError($fieldName, $message, $messageType = '')
{
throw new Exception($message);
}
public function javascript()
{
}
public function php($data)
{
}
}