mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
6becfc2f89
Also adds a .gitignore to ignore files created by in-module testing.
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';
|
|
}
|