mirror of
https://github.com/silverstripe/silverstripe-externallinks.git
synced 2024-10-22 17:05:44 +02:00
9 lines
151 B
PHP
9 lines
151 B
PHP
<?php
|
|
|
|
class ExternalLinksTestPage extends Page implements TestOnly
|
|
{
|
|
private static $db = array(
|
|
'ExpectedContent' => 'HTMLText'
|
|
);
|
|
}
|