mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
1331a60fd7
* removed @package references * included stubs in the test namespaces * updated various return types * updated composr psr4 autoload classes * doc update
20 lines
506 B
PHP
20 lines
506 B
PHP
<?php
|
|
namespace SilverStripe\MultiForm\Tests\Stubs;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\Forms\FieldList;
|
|
use SilverStripe\Forms\TextareaField;
|
|
use SilverStripe\MultiForm\Models\MultiFormStep;
|
|
|
|
class MultiFormTestStepTwo extends MultiFormStep implements TestOnly
|
|
{
|
|
private static $next_steps = MultiFormTestStepThree::class;
|
|
|
|
public function getFields()
|
|
{
|
|
return new FieldList(
|
|
new TextareaField('Comments', 'Tell us a bit about yourself...')
|
|
);
|
|
}
|
|
}
|