File "Presenter.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/fluentform/vendor/wpfluent/framework/src/WPFluent/Pagination/Presenter.php
File size: 340 bytes
MIME-type: text/x-php
Charset: utf-8
<?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();
}