2015-01-26 22:15:19 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Wallabag\CoreBundle\Helper;
|
|
|
|
|
|
|
|
|
|
class Content
|
|
|
|
|
{
|
|
|
|
|
private $title;
|
|
|
|
|
|
|
|
|
|
private $body;
|
|
|
|
|
|
2015-01-31 19:09:34 +01:00
|
|
|
public function __constructor()
|
|
|
|
|
{
|
2015-01-26 22:15:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getTitle()
|
|
|
|
|
{
|
|
|
|
|
return $this->title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setTitle($title)
|
|
|
|
|
{
|
|
|
|
|
$this->title = $title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getBody()
|
|
|
|
|
{
|
|
|
|
|
return $this->body;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setBody($body)
|
|
|
|
|
{
|
|
|
|
|
$this->body = $body;
|
|
|
|
|
}
|
2015-01-31 19:09:34 +01:00
|
|
|
}
|