silverstripe-framework/tests/php/Model/ModelDataTest/Caster.php

20 lines
303 B
PHP
Raw Permalink Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\Model\Tests\ModelDataTest;
2016-10-14 03:30:05 +02:00
use SilverStripe\Dev\TestOnly;
use SilverStripe\Model\ModelData;
2016-10-14 03:30:05 +02:00
class Caster extends ModelData implements TestOnly
2016-10-14 03:30:05 +02:00
{
public function forTemplate(): string
{
return 'casted';
}
2016-10-14 03:30:05 +02:00
public function setValue()
{
}
2016-10-14 03:30:05 +02:00
}