mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
23 lines
536 B
PHP
23 lines
536 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\CMS\Tests\Model\SiteTreeBrokenLinksTest;
|
||
|
|
||
|
use SilverStripe\CMS\Model\SiteTreeLinkTracking;
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\DataObject;
|
||
|
|
||
|
/**
|
||
|
* @mixin SiteTreeLinkTracking
|
||
|
* @property string $Content
|
||
|
* @property string $AnotherContent
|
||
|
*/
|
||
|
class NotPageObject extends DataObject implements TestOnly
|
||
|
{
|
||
|
private static $table_name = 'SiteTreeLinkTrackingTest_NotPageObject';
|
||
|
|
||
|
private static $db = [
|
||
|
'Content' => 'HTMLText',
|
||
|
'AnotherContent' => 'HTMLText',
|
||
|
];
|
||
|
}
|