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