| Current Path : /var/www/www.indacotrentino.com/www/app/code/Ashsmith/Blog/Api/Data/ |
| Current File : //var/www/www.indacotrentino.com/www/app/code/Ashsmith/Blog/Api/Data/PostSearchResultsInterface.php |
<?php
namespace Ashsmith\Blog\Api\Data;
use Magento\Framework\Api\SearchResultsInterface;
/**
* Interface for cms page search results.
* @api
*/
interface PostSearchResultsInterface extends SearchResultsInterface
{
/**
* Get pages list.
*
* @return \Ashsmith\Blog\Api\Data\PostInterface[]
*/
public function getItems();
/**
* Set pages list.
*
* @param \Ashsmith\Blog\Api\Data\PostInterface[] $items
* @return $this
*/
public function setItems(array $items);
}