Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/MySql/Helper/DiffTableRowHelper.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class DiffTableRowHelper
{
//--------------------------------------------------------------------------------------------------------------------
/**
* Append a row.
* Append a row to existing rows array.
*
* @param \array[] $theExistRows Exist rows array for appending.
* @param MultiSourceColumnMetadata $rowMetadata Row for append.
Expand All @@ -31,7 +31,7 @@ public static function appendRow(&$theExistRows, $rowMetadata, $columnName)

//--------------------------------------------------------------------------------------------------------------------
/**
* Create table row.
* Create additional row for column with character set name and collation name.
*
* @param MultiSourceColumnMetadata $rowMetadata Data for table row.
*
Expand Down Expand Up @@ -61,7 +61,7 @@ public static function createColumnOptionsRow($rowMetadata)

//--------------------------------------------------------------------------------------------------------------------
/**
* Create table row.
* Create table row for columns with information from all schemas and config file.
*
* @param MultiSourceColumnMetadata $rowMetadata Data for table row.
* @param string $columnName The columns name.
Expand All @@ -83,10 +83,10 @@ public static function createTableRow($rowMetadata, $columnName)

//--------------------------------------------------------------------------------------------------------------------
/**
* Create table row.
* Helper function for creating string with character set name and collation name.
*
* @param $theCharacterSetName
* @param $theCollationName
* @param string $theCharacterSetName Character set name
* @param string $theCollationName Collation name
*
* @return string
*/
Expand Down