17 lines
310 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\Control\Tests\FlushMiddlewareTest;
2016-10-14 14:30:05 +13:00
use SilverStripe\Core\Flushable;
use SilverStripe\Dev\TestOnly;
class TestFlushable implements Flushable, TestOnly
{
public static $flushed = false;
2016-10-14 14:30:05 +13:00
public static function flush()
{
2024-06-18 09:37:39 +12:00
TestFlushable::$flushed = true;
}
2016-10-14 14:30:05 +13:00
}