mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
MINOR Style guidelines
This commit is contained in:
parent
3256663cad
commit
8e80dc2040
@ -7,15 +7,15 @@
|
||||
|
||||
class SubmittedForm extends DataObject {
|
||||
|
||||
static $has_one = array(
|
||||
public static $has_one = array(
|
||||
"SubmittedBy" => "Member",
|
||||
"Parent" => "UserDefinedForm",
|
||||
);
|
||||
|
||||
static $has_many = array(
|
||||
public static $has_many = array(
|
||||
"Values" => "SubmittedFormField"
|
||||
);
|
||||
|
||||
|
||||
/**
|
||||
* Before we delete this form make sure we delete all the
|
||||
* field values so that we don't leave old data round
|
||||
|
Loading…
Reference in New Issue
Block a user