Issue #2343787 by tim-e: Fix use of get() and set() in ContactForm getters/setters.

8.0.x
Nathaniel Catchpole 2014-09-26 11:55:28 +01:00
parent 542980f0dc
commit 48e7c0254c
1 changed files with 6 additions and 6 deletions

View File

@ -81,14 +81,14 @@ class ContactForm extends ConfigEntityBundleBase implements ContactFormInterface
* {@inheritdoc}
*/
public function getRecipients() {
return $this->get('recipients');
return $this->recipients;
}
/**
* {@inheritdoc}
*/
public function setRecipients($recipients) {
$this->set('recipients', $recipients);
$this->recipients = $recipients;
return $this;
}
@ -96,14 +96,14 @@ class ContactForm extends ConfigEntityBundleBase implements ContactFormInterface
* {@inheritdoc}
*/
public function getReply() {
return $this->get('reply');
return $this->reply;
}
/**
* {@inheritdoc}
*/
public function setReply($reply) {
$this->set('reply', $reply);
$this->reply = $reply;
return $this;
}
@ -111,14 +111,14 @@ class ContactForm extends ConfigEntityBundleBase implements ContactFormInterface
* {@inheritdoc}
*/
public function getWeight() {
return $this->get('weight');
return $this->weight;
}
/**
* {@inheritdoc}
*/
public function setWeight($weight) {
$this->set('weight', $weight);
$this->weight = $weight;
return $this;
}