for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\Forms\Tests;
use SilverStripe\Forms\SegmentFieldModifier\AbstractSegmentFieldModifier;
class SegmentFieldTestModifier extends AbstractSegmentFieldModifier
{
/**
* @inheritdoc
*
* @param string $value
* @return string
*/
public function getSuggestion($value)
return strtoupper($value);
}
public function getPreview($value)
return strtolower($value);