芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/vendor/league/fractal/src/Pagination/CursorInterface.php
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\Fractal\Pagination; /** * A common interface for cursors to use. * * @author Isern Palaus
*/ interface CursorInterface { /** * Get the current cursor value. * * @return mixed */ #[\ReturnTypeWillChange] public function getCurrent(); /** * Get the prev cursor value. * * @return mixed */ #[\ReturnTypeWillChange] public function getPrev(); /** * Get the next cursor value. * * @return mixed */ #[\ReturnTypeWillChange] public function getNext(); /** * Returns the total items in the current cursor. */ public function getCount(): ?int; }