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-01-23 18:20:04 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-01-23 18:20:04 +0300
commit6584b01824c95441c3148fd5313a9c7c602c7bf4 (patch)
tree2d939de2b534dbc32ccf381fc20301ad0b75efca /libraries/classes/Normalization.php
parent74da8741643568dca041a7541cb2c6d4cd4fee88 (diff)
Use short versions of scalar types in PHP docs
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries/classes/Normalization.php')
-rw-r--r--libraries/classes/Normalization.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/libraries/classes/Normalization.php b/libraries/classes/Normalization.php
index db492c6b51..08ac5ca585 100644
--- a/libraries/classes/Normalization.php
+++ b/libraries/classes/Normalization.php
@@ -119,10 +119,10 @@ class Normalization
/**
* get the html of the form to add the new column to given table
*
- * @param integer $numFields number of columns to add
- * @param string $db current database
- * @param string $table current table
- * @param array $columnMeta array containing default values for the fields
+ * @param int $numFields number of columns to add
+ * @param string $db current database
+ * @param string $table current table
+ * @param array $columnMeta array containing default values for the fields
*
* @return string HTML
*/
@@ -1024,15 +1024,15 @@ class Normalization
/**
* check whether a particular column is dependent on given subset of primary key
*
- * @param string $partialKey the partial key, subset of primary key,
- * each column in key supposed to be backquoted
- * @param string $column backquoted column on whose dependency being checked
- * @param string $table current table
- * @param integer $pkCnt distinct value count for given partial key
- * @param integer $colCnt distinct value count for given column
- * @param integer $totalRows total distinct rows count of the table
+ * @param string $partialKey the partial key, subset of primary key,
+ * each column in key supposed to be backquoted
+ * @param string $column backquoted column on whose dependency being checked
+ * @param string $table current table
+ * @param int $pkCnt distinct value count for given partial key
+ * @param int $colCnt distinct value count for given column
+ * @param int $totalRows total distinct rows count of the table
*
- * @return boolean TRUE if $column is dependent on $partialKey, False otherwise
+ * @return bool TRUE if $column is dependent on $partialKey, False otherwise
*/
private function checkPartialDependency(
$partialKey,