silverstripe-framework/tests/php/View/ViewableDataTest/NotCached.php

18 lines
309 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\View\Tests\ViewableDataTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\View\ViewableData;
class NotCached extends ViewableData implements TestOnly
{
public $Test;
2016-10-14 03:30:05 +02:00
protected function objCacheGet($key)
{
// Disable caching
return null;
}
2016-10-14 03:30:05 +02:00
}