mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
15 lines
271 B
PHP
15 lines
271 B
PHP
|
<?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";
|
||
|
}
|
||
|
}
|