Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-07-11 00:06:29 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-07-11 00:06:29 +0300
commit3b285ff17e26faec8e3cc2ed9058f0f82ad27708 (patch)
treeb1cdfca7d52fdc0d266b0bd95b78432c3c94d6b6 /libraries/classes/CreateAddField.php
parent75443758672002e4afe2041c73db46a1c1e55e9f (diff)
Use identical operator for non-empty strings
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries/classes/CreateAddField.php')
-rw-r--r--libraries/classes/CreateAddField.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/libraries/classes/CreateAddField.php b/libraries/classes/CreateAddField.php
index 06ca60710e..6579dbabcb 100644
--- a/libraries/classes/CreateAddField.php
+++ b/libraries/classes/CreateAddField.php
@@ -174,7 +174,7 @@ class CreateAddField
$sqlQuery = $this->getStatementPrefix($isCreateTable)
. ' ' . $indexChoice;
- if (! empty($index['Key_name']) && $index['Key_name'] != 'PRIMARY') {
+ if (! empty($index['Key_name']) && $index['Key_name'] !== 'PRIMARY') {
$sqlQuery .= ' ' . Util::backquote($index['Key_name']);
}
@@ -200,15 +200,15 @@ class CreateAddField
// specifying index type is allowed only for primary, unique and index only
$type = $index['Index_type'];
- if ($index['Index_choice'] != 'SPATIAL'
- && $index['Index_choice'] != 'FULLTEXT'
+ if ($index['Index_choice'] !== 'SPATIAL'
+ && $index['Index_choice'] !== 'FULLTEXT'
&& in_array($type, Index::getIndexTypes())
) {
$sqlQuery .= ' USING ' . $type;
}
$parser = $index['Parser'];
- if ($index['Index_choice'] == 'FULLTEXT' && ! empty($parser)) {
+ if ($index['Index_choice'] === 'FULLTEXT' && ! empty($parser)) {
$sqlQuery .= ' WITH PARSER ' . $this->dbi->escapeString($parser);
}
@@ -399,7 +399,7 @@ class CreateAddField
if (! empty($partition['value_type'])) {
$sqlQuery .= ' VALUES ' . $partition['value_type'];
- if ($partition['value_type'] != 'LESS THAN MAXVALUE') {
+ if ($partition['value_type'] !== 'LESS THAN MAXVALUE') {
$sqlQuery .= ' (' . $partition['value'] . ')';
}
}
@@ -460,7 +460,7 @@ class CreateAddField
// Adds table type, character set, comments and partition definition
if (! empty($_POST['tbl_storage_engine'])
- && ($_POST['tbl_storage_engine'] != 'Default')
+ && ($_POST['tbl_storage_engine'] !== 'Default')
) {
$sqlQuery .= ' ENGINE = ' . $this->dbi->escapeString($_POST['tbl_storage_engine']);
}
@@ -469,7 +469,7 @@ class CreateAddField
}
if (! empty($_POST['connection'])
&& ! empty($_POST['tbl_storage_engine'])
- && $_POST['tbl_storage_engine'] == 'FEDERATED'
+ && $_POST['tbl_storage_engine'] === 'FEDERATED'
) {
$sqlQuery .= " CONNECTION = '"
. $this->dbi->escapeString($_POST['connection']) . "'";