silverstripe-framework/tests/php/Forms/FormRequestHandlerTest/TestForm.php

15 lines
266 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Forms\Tests\FormRequestHandlerTest;
use SilverStripe\Control\HTTPResponse;
use SilverStripe\Forms\Form;
class TestForm extends Form
{
public function mySubmitOnForm()
{
return new HTTPResponse('success', 200);
}
}