mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
9 lines
196 B
PHP
9 lines
196 B
PHP
<?php
|
|
class FrameworkTestFileExtension extends DataExtension
|
|
{
|
|
private static $has_one = array(
|
|
'Company' => 'Company',
|
|
'BasicFieldsTestPage' => 'BasicFieldsTestPage'
|
|
);
|
|
}
|