2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\Security\Tests\SecurityTest;
|
|
|
|
|
|
|
|
use SilverStripe\Control\Controller;
|
2022-10-17 06:58:20 +02:00
|
|
|
use SilverStripe\Control\HTTPResponse;
|
2016-10-14 03:30:05 +02:00
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
|
2017-07-03 02:21:27 +02:00
|
|
|
/**
|
|
|
|
* @skipUpgrade
|
|
|
|
*/
|
2016-10-14 03:30:05 +02:00
|
|
|
class NullController extends Controller implements TestOnly
|
|
|
|
{
|
|
|
|
|
2022-10-17 06:58:20 +02:00
|
|
|
public function redirect(string $url, int $code = 302): HTTPResponse
|
2016-12-16 05:34:21 +01:00
|
|
|
{
|
|
|
|
// NOOP
|
2022-10-17 06:58:20 +02:00
|
|
|
return HTTPResponse::create();
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function Link($action = null)
|
|
|
|
{
|
|
|
|
return Controller::join_links('SecurityTest_NullController', $action, '/');
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|