OpenXE/vendor/aura/sqlquery/src/Common/LimitInterface.php

31 lines
459 B
PHP
Raw Normal View History

2021-05-21 08:49:41 +02:00
<?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);
}