summaryrefslogtreecommitdiffstats
path: root/src/Statements/UpdateStatement.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Statements/UpdateStatement.php')
-rw-r--r--src/Statements/UpdateStatement.php44
1 files changed, 20 insertions, 24 deletions
diff --git a/src/Statements/UpdateStatement.php b/src/Statements/UpdateStatement.php
index da7d741..82adeb1 100644
--- a/src/Statements/UpdateStatement.php
+++ b/src/Statements/UpdateStatement.php
@@ -1,8 +1,8 @@
<?php
-
/**
* `UPDATE` statement.
*/
+declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Statements;
@@ -27,10 +27,6 @@ use PhpMyAdmin\SqlParser\Statement;
* UPDATE [LOW_PRIORITY] [IGNORE] table_references
* SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ...
* [WHERE where_condition]
- *
- * @category Statements
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class UpdateStatement extends Statement
{
@@ -39,10 +35,10 @@ class UpdateStatement extends Statement
*
* @var array
*/
- public static $OPTIONS = array(
+ public static $OPTIONS = [
'LOW_PRIORITY' => 1,
- 'IGNORE' => 2
- );
+ 'IGNORE' => 2,
+ ];
/**
* The clauses of this statement, in order.
@@ -51,38 +47,38 @@ class UpdateStatement extends Statement
*
* @var array
*/
- public static $CLAUSES = array(
- 'UPDATE' => array(
+ public static $CLAUSES = [
+ 'UPDATE' => [
'UPDATE',
2,
- ),
+ ],
// Used for options.
- '_OPTIONS' => array(
+ '_OPTIONS' => [
'_OPTIONS',
1,
- ),
+ ],
// Used for updated tables.
- '_UPDATE' => array(
+ '_UPDATE' => [
'UPDATE',
1,
- ),
- 'SET' => array(
+ ],
+ 'SET' => [
'SET',
3,
- ),
- 'WHERE' => array(
+ ],
+ 'WHERE' => [
'WHERE',
3,
- ),
- 'ORDER BY' => array(
+ ],
+ 'ORDER BY' => [
'ORDER BY',
3,
- ),
- 'LIMIT' => array(
+ ],
+ 'LIMIT' => [
'LIMIT',
3,
- )
- );
+ ],
+ ];
/**
* Tables used as sources for this statement.