MINOR: added empty statics for decoration

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@70411 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Will Rossiter 2009-01-20 03:50:22 +00:00 committed by Sam Minnee
parent 64e61cc250
commit 7908e569af
2 changed files with 12 additions and 0 deletions

View File

@ -739,6 +739,12 @@ class Email_BounceRecord extends DataObject {
static $has_one = array( static $has_one = array(
'Member' => 'Member' 'Member' => 'Member'
); );
static $has_many = array();
static $many_many = array();
static $defaults = array();
} }
/** /**

View File

@ -17,6 +17,12 @@ class QueuedEmail extends DataObject {
'To' => 'Member' 'To' => 'Member'
); );
static $has_many = array();
static $many_many = array();
static $defaults = array();
// overwrite this method to provide a check whether or not to send the email // overwrite this method to provide a check whether or not to send the email
function canSendEmail() { function canSendEmail() {
return true; return true;