<?php
namespace FluentForm\Framework\Pagination;
interface Presenter
{
/**
* Render the given paginator.
*
* @return string
*/
public function render();
/**
* Determine if the underlying paginator being presented has pages to show.
*
* @return bool
*/
public function hasPages();
}