silverstripe-framework/tests/php/Model/ModelDataTest/NoCastingInformation.php
Guy Sartorelli e2e32317d6
API Move various classes to more appropriate namespaces (#11370)
Also rename ViewableData to ModelData ahead of the template layer
lift-and-shift
2024-09-23 14:31:50 +12:00

15 lines
289 B
PHP

<?php
namespace SilverStripe\Model\Tests\ModelDataTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\Model\ModelData;
class NoCastingInformation extends ModelData implements TestOnly
{
public function noCastingInformation()
{
return "No casting information";
}
}