24 regels
384 B
PHP
24 regels
384 B
PHP
|
<?php namespace Todaymade\Daux\Tree;
|
||
|
|
||
|
abstract class ContentAbstract extends Entry
|
||
|
{
|
||
|
/** @var string */
|
||
|
protected $content;
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getContent()
|
||
|
{
|
||
|
return $this->content;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $content
|
||
|
*/
|
||
|
public function setContent($content)
|
||
|
{
|
||
|
$this->content = $content;
|
||
|
}
|
||
|
}
|