mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
11 lines
183 B
PHP
11 lines
183 B
PHP
|
<?php
|
||
|
|
||
|
namespace Symbiote\GridFieldExtensions\Tests\Stub;
|
||
|
|
||
|
use SilverStripe\Control\Controller;
|
||
|
|
||
|
class TestController extends Controller
|
||
|
{
|
||
|
private static $url_segment = 'test';
|
||
|
}
|