for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* This file is part of Aura for PHP.
* @license http://opensource.org/licenses/bsd-license.php BSD
*/
namespace Aura\SqlQuery\Mysql;
use Aura\SqlQuery\Common;
* An object for MySQL UPDATE queries.
* @package Aura.SqlQuery
class Update extends Common\Update implements Common\OrderByInterface, Common\LimitInterface
{
* Adds or removes LOW_PRIORITY flag.
* @param bool $enable Set or unset flag (default true).
* @return $this
public function lowPriority($enable = true)
$this->setFlag('LOW_PRIORITY', $enable);
return $this;
}
* Adds or removes IGNORE flag.
public function ignore($enable = true)
$this->setFlag('IGNORE', $enable);
* Sets a limit count on the query.
* @param int $limit The number of rows to select.
public function limit($limit)
$this->limit = (int) $limit;
* Returns the LIMIT value.
* @return int
public function getLimit()
return $this->limit;
* Adds a column order to the query.
* @param array $spec The columns and direction to order by.
public function orderBy(array $spec)
return $this->addOrderBy($spec);