mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
17 lines
301 B
PHP
17 lines
301 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Control\Tests\FlushMiddlewareTest;
|
|
|
|
use SilverStripe\Core\Flushable;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class TestFlushable implements Flushable, TestOnly
|
|
{
|
|
public static $flushed = false;
|
|
|
|
public static function flush()
|
|
{
|
|
self::$flushed = true;
|
|
}
|
|
}
|