Skip to content

Commit

Permalink
Update PHPDoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tithugues committed Nov 8, 2013
1 parent 80210a4 commit 661db9e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
11 changes: 6 additions & 5 deletions libraries/DisplayResults.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -5960,12 +5960,12 @@ private function _getCheckboxAndLinks(
*
* @param string $buffer String to process
*
* @return Escaped and cleaned up text suitable for html.
* @return String Escaped and cleaned up text suitable for html.
*
* @access private
* @access private
*
* @see _getDataCellForBlobField(), _getRowData(),
* _handleNonPrintableContents()
* @see _getDataCellForBlobField(), _getRowData(),
* _handleNonPrintableContents()
*/
private function _mimeDefaultFunction($buffer)
{
Expand All @@ -5988,7 +5988,7 @@ private function _mimeDefaultFunction($buffer)
* @param string $binary_or_blob binary' or 'blob'
* @param int $hexlength optional, get substring
*
* @return Displayable version of the binary string
* @return String Displayable version of the binary string
*
* @access private
*
Expand Down Expand Up @@ -6019,4 +6019,5 @@ private function _displayBinaryAsPrintable(
return $content;
}
}

?>
32 changes: 16 additions & 16 deletions libraries/transformations.lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ function PMA_getAvailableMIMEtypes()
/**
* Returns the description of the transformation
*
* @param string $file transformation file
* @param string $html_formatted whether the description should be formatted
* as HTML
* @param string $file transformation file
* @param boolean $html_formatted whether the description should be formatted
* as HTML
*
* @return the description of the transformation
* @return String the description of the transformation
*/
function PMA_getTransformationDescription($file, $html_formatted = true)
{
Expand All @@ -153,11 +153,11 @@ function PMA_getTransformationDescription($file, $html_formatted = true)
/**
* Gets the mimetypes for all columns of a table
*
* @param string $db the name of the db to check for
* @param string $table the name of the table to check for
* @param string $strict whether to include only results having a mimetype set
* @param string $db the name of the db to check for
* @param string $table the name of the table to check for
* @param boolean $strict whether to include only results having a mimetype set
*
* @access public
* @access public
*
* @return array [field_name][field_key] = field_value
*/
Expand Down Expand Up @@ -232,14 +232,14 @@ function PMA_getMIME($db, $table, $strict = false)
/**
* Set a single mimetype to a certain value.
*
* @param string $db the name of the db
* @param string $table the name of the table
* @param string $key the name of the column
* @param string $mimetype the mimetype of the column
* @param string $transformation the transformation of the column
* @param string $transformation_options the transformation options of the column
* @param string $forcedelete force delete, will erase any existing
* comments for this column
* @param string $db the name of the db
* @param string $table the name of the table
* @param string $key the name of the column
* @param string $mimetype the mimetype of the column
* @param string $transformation the transformation of the column
* @param string $transformation_options the transformation options of the column
* @param boolean $forcedelete force delete, will erase any existing
* comments for this column
*
* @access public
*
Expand Down

0 comments on commit 661db9e

Please sign in to comment.