mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
11 lines
198 B
PHP
11 lines
198 B
PHP
|
<?php
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
|
||
|
class SiteTreeTest_AdminDenied extends Page implements TestOnly
|
||
|
{
|
||
|
private static $extensions = array(
|
||
|
'SiteTreeTest_AdminDeniedExtension'
|
||
|
);
|
||
|
}
|