]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Helper/Content.php
Merge pull request #1395 from wallabag/v2-fix-1378
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Helper / Content.php
1 <?php
2
3 namespace Wallabag\CoreBundle\Helper;
4
5 class Content
6 {
7 private $title;
8
9 private $body;
10
11 public function __constructor()
12 {
13 }
14
15 public function getTitle()
16 {
17 return $this->title;
18 }
19
20 public function setTitle($title)
21 {
22 $this->title = $title;
23 }
24
25 public function getBody()
26 {
27 return $this->body;
28 }
29
30 public function setBody($body)
31 {
32 $this->body = $body;
33 }
34 }