D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
cakephp
/
datasource
/
Paging
/
Filename :
PaginatorInterface.php
back
Copy
<?php declare (strict_types=1); /** * CakePHP(tm) : Rapid Development Framework (https://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * @link https://cakephp.org CakePHP(tm) Project * @since 3.5.0 * @license https://www.opensource.org/licenses/mit-license.php MIT License */ namespace WPToolkitDependenciesIsolationPrefix\Cake\Datasource\Paging; use WPToolkitDependenciesIsolationPrefix\Cake\Datasource\ResultSetInterface; /** * This interface describes the methods for paginator instance. */ interface PaginatorInterface { /** * Handles pagination of datasource records. * * @param \Cake\Datasource\RepositoryInterface|\Cake\Datasource\QueryInterface $object The repository or query * to paginate. * @param array $params Request params * @param array $settings The settings/configuration used for pagination. * @return \Cake\Datasource\ResultSetInterface Query results */ public function paginate(object $object, array $params = [], array $settings = []) : ResultSetInterface; /** * Get paging params after pagination operation. * * @return array */ public function getPagingParams() : array; } // phpcs:disable \class_alias('WPToolkitDependenciesIsolationPrefix\\Cake\\Datasource\\Paging\\PaginatorInterface', 'WPToolkitDependenciesIsolationPrefix\\Cake\\Datasource\\PaginatorInterface'); // phpcs:enable