Moved setSummary() from PageLegacyInterface to PageContentInterface

This commit is contained in:
Matias Griese
2019-08-15 19:23:05 +03:00
parent e134e3dbd9
commit 14eaa4d00a
2 changed files with 7 additions and 7 deletions

View File

@@ -36,6 +36,13 @@ interface PageContentInterface
*/
public function summary($size = null, $textOnly = false);
/**
* Sets the summary of the page
*
* @param string $summary Summary
*/
public function setSummary($summary);
/**
* Gets and Sets the content based on content portion of the .md file
*

View File

@@ -51,13 +51,6 @@ interface PageLegacyInterface
public function httpHeaders();
/**
* Sets the summary of the page
*
* @param string $summary Summary
*/
public function setSummary($summary);
/**
* Get the contentMeta array and initialize content first if it's not already
*