mirror of
https://github.com/FriendsOfSymfony/FOSMessageBundle.git
synced 2026-03-24 15:02:22 +01:00
28 lines
361 B
PHP
28 lines
361 B
PHP
<?php
|
|
|
|
namespace FOS\MessageBundle\FormModel;
|
|
|
|
abstract class AbstractMessage
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $body;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getBody()
|
|
{
|
|
return $this->body;
|
|
}
|
|
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setBody($body)
|
|
{
|
|
$this->body = $body;
|
|
}
|
|
}
|