Skip to content

Commit

Permalink
Merge pull request #1156 from mandrew/patch-1
Browse files Browse the repository at this point in the history
FIX: Strict error warnings on DataExtension
  • Loading branch information
chillu committed Feb 4, 2013
2 parents b381e99 + 866bb07 commit 5205a44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions model/DataExtension.php
Expand Up @@ -145,7 +145,7 @@ public function extraStatics($class = null, $extension = null) {
*
* @param FieldList $fields FieldList with a contained TabSet
*/
public function updateCMSFields(FieldList $fields) {
public function updateCMSFields(FieldList &$fields) {
}

/**
Expand All @@ -156,7 +156,7 @@ public function updateCMSFields(FieldList $fields) {
*
* @param FieldList $fields FieldList without TabSet nesting
*/
public function updateFrontEndFields(FieldList $fields) {
public function updateFrontEndFields(FieldList &$fields) {
}

/**
Expand All @@ -165,7 +165,7 @@ public function updateFrontEndFields(FieldList $fields) {
*
* @param FieldList $actions FieldList
*/
public function updateCMSActions(FieldList $actions) {
public function updateCMSActions(FieldList &$actions) {
}

/**
Expand Down

0 comments on commit 5205a44

Please sign in to comment.