mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-02-13 13:10:09 +01:00
31 lines
459 B
PHP
31 lines
459 B
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of Aura for PHP.
|
|
*
|
|
* @license http://opensource.org/licenses/bsd-license.php BSD
|
|
*
|
|
*/
|
|
namespace Aura\SqlQuery\Common;
|
|
|
|
/**
|
|
*
|
|
* An interface for LIMIT clauses.
|
|
*
|
|
* @package Aura.SqlQuery
|
|
*
|
|
*/
|
|
interface LimitInterface
|
|
{
|
|
/**
|
|
*
|
|
* Sets a limit count on the query.
|
|
*
|
|
* @param int $limit The number of rows to select.
|
|
*
|
|
* @return $this
|
|
*
|
|
*/
|
|
public function limit($limit);
|
|
}
|