silverstripe-framework/tests/php/Model/ModelDataTest/NotCached.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

18 lines
302 B
PHP

<?php
namespace SilverStripe\Model\Tests\ModelDataTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\Model\ModelData;
class NotCached extends ModelData implements TestOnly
{
public $Test;
protected function objCacheGet($key)
{
// Disable caching
return null;
}
}