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

15 lines
289 B
PHP
Raw Normal View History

<?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";
}
}