ComponentPartial properties should be publically accessible

Fixes caching issue when updating a component partial
This commit is contained in:
Samuel Georges 2016-04-16 04:42:34 +10:00
parent b15cdadd99
commit cafd5d7ffa
1 changed files with 3 additions and 3 deletions

View File

@ -23,17 +23,17 @@ class ComponentPartial extends Extendable implements CmsObjectContract
/**
* @var string The component partial file name.
*/
protected $fileName;
public $fileName;
/**
* @var string Last modified time.
*/
protected $mtime;
public $mtime;
/**
* @var string Partial content.
*/
protected $content;
public $content;
/**
* @var int The maximum allowed path nesting level. The default value is 2,