mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
16 lines
497 B
PHP
16 lines
497 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\CMS\Tests\Controllers\CMSPageHistoryControllerTest;
|
||
|
|
||
|
use SilverStripe\CMS\Controllers\CMSPageHistoryController;
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
|
||
|
/**
|
||
|
* Used to circumvent potential URL conflicts with the silverstripe/versioned-admin history viewer controller
|
||
|
* when running unit tests on the legacy CMSPageHistoryController.
|
||
|
*/
|
||
|
class HistoryController extends CMSPageHistoryController implements TestOnly
|
||
|
{
|
||
|
private static $url_segment = 'pages/legacyhistory';
|
||
|
}
|