mirror of
https://github.com/silverstripe/silverstripe-externallinks.git
synced 2024-10-22 17:05:44 +02:00
16 lines
303 B
PHP
16 lines
303 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ExternalLinks\Tests\Stubs;
|
|
|
|
use Page;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class ExternalLinksTestPage extends Page implements TestOnly
|
|
{
|
|
private static $table_name = 'ExternalLinksTestPage';
|
|
|
|
private static $db = array(
|
|
'ExpectedContent' => 'HTMLText'
|
|
);
|
|
}
|