15 lines
271 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\Control\Tests\RequestHandlingTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\View\ViewableData;
class ControllerFailover extends ViewableData implements TestOnly
{
public function failoverMethod()
{
return "failoverMethod";
}
}