The branch, master has been updated
via f2842a22bf179b93a7eeebd034ed9302fb781e97 (commit)
via df9b8c2729decf39321771452bc1884b979f31ef (commit)
via a9d583e5d5b1ed4c82dbf687b13a3eb964ce63e1 (commit)
via 6dca42107e3c16cb886bc470953e71fbe4aa3503 (commit)
via 493aa3a6f0912d13a46703469bd0630362db5ee0 (commit)
from e16bd0bb796b8ae895a0cac78389491aa5569114 (commit)
- Log -----------------------------------------------------------------
commit f2842a22bf179b93a7eeebd034ed9302fb781e97
Author: Piotr Przybylski <[email protected]>
Date: Tue Aug 16 14:35:02 2011 +0200
Fox comment
commit df9b8c2729decf39321771452bc1884b979f31ef
Author: Piotr Przybylski <[email protected]>
Date: Tue Aug 16 14:31:52 2011 +0200
Fix comments for functions with missing @return tag
commit a9d583e5d5b1ed4c82dbf687b13a3eb964ce63e1
Author: Piotr Przybylski <[email protected]>
Date: Tue Aug 16 14:30:46 2011 +0200
Add some missing @return tags in tests
commit 6dca42107e3c16cb886bc470953e71fbe4aa3503
Author: Piotr Przybylski <[email protected]>
Date: Tue Aug 16 14:18:15 2011 +0200
Fix comments in upload progress libs and add make returns consistent
commit 493aa3a6f0912d13a46703469bd0630362db5ee0
Author: Piotr Przybylski <[email protected]>
Date: Tue Aug 16 14:16:46 2011 +0200
A few fixes for comments in Relation_Schema classes (they still require
further work)
-----------------------------------------------------------------------
Summary of changes:
libraries/Advisor.class.php | 10 ++++++++++
libraries/Config.class.php | 9 +++++++--
libraries/Error_Handler.class.php | 1 +
libraries/File.class.php | 5 ++++-
libraries/List_Database.class.php | 1 +
libraries/PMA.php | 6 ++++++
libraries/Theme.class.php | 2 ++
libraries/Theme_Manager.class.php | 10 +++++++++-
libraries/auth/cookie.auth.lib.php | 1 +
libraries/blobstreaming.lib.php | 10 ++++++++++
libraries/blowfish.php | 1 +
libraries/common.lib.php | 7 +++----
libraries/database_interface.lib.php | 1 +
libraries/db_structure.lib.php | 8 ++++----
libraries/file_listing.php | 16 ++++++++--------
libraries/grab_globals.lib.php | 5 +++--
libraries/import/upload/apc.php | 5 ++++-
libraries/import/upload/noplugin.php | 5 ++++-
libraries/import/upload/uploadprogress.php | 5 ++++-
libraries/mime.lib.php | 3 +++
libraries/schema/Pdf_Relation_Schema.class.php | 10 +++++++---
libraries/schema/Svg_Relation_Schema.class.php | 2 +-
libraries/schema/Visio_Relation_Schema.class.php | 7 +++----
libraries/select_lang.lib.php | 5 +++++
libraries/sysinfo.lib.php | 3 +++
scripts/signon-script.php | 3 +++
.../libraries/common/PMA_expandUserString_test.php | 2 ++
.../libraries/common/PMA_extractFieldSpec_test.php | 2 ++
.../common/PMA_foreignKeySupported_test.php | 2 ++
.../common/PMA_formatNumberByteDown_test.php | 5 ++++-
.../common/PMA_localisedDateTimespan_test.php | 5 ++++-
.../common/PMA_printableBitValue_test.php | 3 ++-
.../libraries/common/PMA_quoting_slashing_test.php | 6 ++++++
.../libraries/common/PMA_stringOperations_test.php | 12 ++++++++----
34 files changed, 138 insertions(+), 40 deletions(-)
diff --git a/libraries/Advisor.class.php b/libraries/Advisor.class.php
index bf4fd41..26696bd 100644
--- a/libraries/Advisor.class.php
+++ b/libraries/Advisor.class.php
@@ -85,6 +85,9 @@ class Advisor
/**
* Escapes percent string to be used in format string.
+ *
+ * @param string $str
+ * @return string
*/
function escapePercent($str)
{
@@ -93,6 +96,10 @@ class Advisor
/**
* Wrapper function for translating.
+ *
+ * @param string $str
+ * @param mixed $param
+ * @return string
*/
function translate($str, $param = null)
{
@@ -109,6 +116,9 @@ class Advisor
/**
* Splits justification to text and formula.
+ *
+ * @param string $rule
+ * @return array
*/
function splitJustification($rule)
{
diff --git a/libraries/Config.class.php b/libraries/Config.class.php
index 803e0c0..f390856 100644
--- a/libraries/Config.class.php
+++ b/libraries/Config.class.php
@@ -334,6 +334,7 @@ class PMA_Config
* should be called on object creation
*
* @param string $source config file
+ * @return bool
*/
function load($source = null)
{
@@ -698,6 +699,8 @@ class PMA_Config
* $cfg['PmaAbsoluteUri'] is a required directive else cookies won't be
* set properly and, depending on browsers, inserting or updating a
* record might fail
+ *
+ * @return bool
*/
function checkPmaAbsoluteUri()
{
@@ -937,7 +940,7 @@ class PMA_Config
}
/**
- * @static
+ * @return bool
*/
public function isHttps()
{
@@ -964,6 +967,8 @@ class PMA_Config
*
* Please note that this just detects what we see, so
* it completely ignores things like reverse proxies.
+ *
+ * @return bool
*/
function detectHttps()
{
@@ -1012,7 +1017,7 @@ class PMA_Config
}
/**
- * @static
+ * @return string
*/
public function getCookiePath()
{
diff --git a/libraries/Error_Handler.class.php
b/libraries/Error_Handler.class.php
index 1a9cdb0..ac132fa 100644
--- a/libraries/Error_Handler.class.php
+++ b/libraries/Error_Handler.class.php
@@ -127,6 +127,7 @@ class PMA_Error_Handler
*
* @todo finish!
* @param PMA_Error $error
+ * @return bool
*/
protected function _logError($error)
{
diff --git a/libraries/File.class.php b/libraries/File.class.php
index 66a88b8..592127b 100644
--- a/libraries/File.class.php
+++ b/libraries/File.class.php
@@ -189,6 +189,7 @@ class PMA_File
/**
* @access public
+ * @return bool
*/
function isUploaded()
{
@@ -591,7 +592,7 @@ class PMA_File
}
/**
- *
+ * @return bool
*/
function open()
{
@@ -688,6 +689,8 @@ class PMA_File
* http://bugs.php.net/bug.php?id=29532
* bzip reads a maximum of 8192 bytes on windows systems
* @todo this function is unused
+ * @param int $max_size
+ * @return bool|string
*/
function getNextChunk($max_size = null)
{
diff --git a/libraries/List_Database.class.php
b/libraries/List_Database.class.php
index a890773..e9907cf 100644
--- a/libraries/List_Database.class.php
+++ b/libraries/List_Database.class.php
@@ -90,6 +90,7 @@ require_once './libraries/List.class.php';
*
* @todo we could also search mysql tables if all fail?
* @param string $like_db_name usally a db_name containing wildcards
+ * @return array
*/
protected function _retrieve($like_db_name = null)
{
diff --git a/libraries/PMA.php b/libraries/PMA.php
index 4f148b7..ea2c27e 100644
--- a/libraries/PMA.php
+++ b/libraries/PMA.php
@@ -44,6 +44,9 @@ class PMA
* magic access to protected/inaccessible members/properties
*
* @see http://php.net/language.oop5.overloading
+ *
+ * @param string $param
+ * @return mixed
*/
public function __get($param)
{
@@ -66,6 +69,9 @@ class PMA
* magic access to protected/inaccessible members/properties
*
* @see http://php.net/language.oop5.overloading
+ *
+ * @param string $param
+ * @param mixed $value
*/
public function __set($param, $value)
{
diff --git a/libraries/Theme.class.php b/libraries/Theme.class.php
index f6b08a0..87f6a3e 100644
--- a/libraries/Theme.class.php
+++ b/libraries/Theme.class.php
@@ -130,6 +130,7 @@ class PMA_Theme
* checks image path for existance - if not found use img from original
theme
*
* @access public
+ * @return bool
*/
function checkImgPath()
{
@@ -282,6 +283,7 @@ class PMA_Theme
*
* @access public
* @param string $type left, right or print
+ * @return bool
*/
function loadCss(&$type)
{
diff --git a/libraries/Theme_Manager.class.php
b/libraries/Theme_Manager.class.php
index 174c031..93f5ecf 100644
--- a/libraries/Theme_Manager.class.php
+++ b/libraries/Theme_Manager.class.php
@@ -38,7 +38,7 @@ class PMA_Theme_Manager
var $active_theme = '';
/**
- * @var object PMA_Theme active theme
+ * @var PMA_Theme PMA_Theme active theme
*/
var $theme = null;
@@ -193,6 +193,7 @@ class PMA_Theme_Manager
/**
* save theme in cookie
*
+ * @return bool true
*/
function setThemeCookie()
{
@@ -224,6 +225,8 @@ class PMA_Theme_Manager
/**
* read all themes
+ *
+ * @return bool true
*/
function loadThemes()
{
@@ -259,6 +262,7 @@ class PMA_Theme_Manager
* checks if given theme name is a known theme
*
* @param string $theme name fo theme to check for
+ * @return bool
*/
function checkTheme($theme)
{
@@ -273,6 +277,7 @@ class PMA_Theme_Manager
* returns HTML selectbox, with or without form enclosed
*
* @param boolean $form whether enclosed by from tags or not
+ * @return string
*/
function getHtmlSelectBox($form = true)
{
@@ -351,6 +356,9 @@ class PMA_Theme_Manager
/**
* prints css data
+ *
+ * @param string $type
+ * @return bool
*/
function printCss($type)
{
diff --git a/libraries/auth/cookie.auth.lib.php
b/libraries/auth/cookie.auth.lib.php
index 4615c55..c2e50c0 100644
--- a/libraries/auth/cookie.auth.lib.php
+++ b/libraries/auth/cookie.auth.lib.php
@@ -80,6 +80,7 @@ if (function_exists('mcrypt_encrypt')) {
* Returns blowfish secret or generates one if needed.
*
* @access public
+ * @return string
*/
function PMA_get_blowfish_secret()
{
diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php
index 5cfae23..d3827f9 100644
--- a/libraries/blobstreaming.lib.php
+++ b/libraries/blobstreaming.lib.php
@@ -4,6 +4,11 @@
* @package BLOBStreaming
*/
+/**
+ * Initializes PBMS database
+ *
+ * @return bool
+ */
function initPBMSDatabase()
{
$query = "create database IF NOT EXISTS pbms;"; // If no other choice then
try this.
@@ -379,6 +384,11 @@ function PMA_BS_CreateReferenceLink($bs_reference,
$db_name)
* BLOB streaming on a per table or database basis. So in anticipation of this
* PMA_BS_IsTablePBMSEnabled() passes in the table and database name even
though
* they are not currently needed.
+ *
+ * @param string $db_name
+ * @param string $tbl_name
+ * @param string $tbl_type
+ * @return bool
*/
function PMA_BS_IsTablePBMSEnabled($db_name, $tbl_name, $tbl_type)
{
diff --git a/libraries/blowfish.php b/libraries/blowfish.php
index 69abf52..0c04106 100644
--- a/libraries/blowfish.php
+++ b/libraries/blowfish.php
@@ -321,6 +321,7 @@ class Horde_Cipher_blowfish
* Set the key to be used for en/decryption.
*
* @param string $key The key to use.
+ * @return bool
*/
public function setKey($key)
{
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 4850e41..eee6035 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -2953,10 +2953,9 @@ function PMA_expandUserString($string, $escape = null,
$updates = array())
* function that generates a json output for an ajax request and ends script
* execution
*
- * @param bool $message message string containing the html of the message
- * @param bool $success success whether the ajax request was successfull
- * @param array $extra_data extra_data optional - any other data as part of
the json request
- *
+ * @param PMA_Message|string $message message string containing the html
of the message
+ * @param bool $success success whether the ajax request was
successfull
+ * @param array $extra_data extra_data optional - any other
data as part of the json request
*/
function PMA_ajaxResponse($message, $success = true, $extra_data = array())
{
diff --git a/libraries/database_interface.lib.php
b/libraries/database_interface.lib.php
index 1873ef1..58307fe 100644
--- a/libraries/database_interface.lib.php
+++ b/libraries/database_interface.lib.php
@@ -23,6 +23,7 @@ define('PMA_DBI_GETVAR_GLOBAL', 2);
* Checks one of the mysql extensions
*
* @param string $extension mysql extension to check
+ * @return bool
*/
function PMA_DBI_checkMysqlExtension($extension = 'mysql')
{
diff --git a/libraries/db_structure.lib.php b/libraries/db_structure.lib.php
index 179e752..d2702eb 100644
--- a/libraries/db_structure.lib.php
+++ b/libraries/db_structure.lib.php
@@ -65,10 +65,10 @@ function PMA_TableHeader($db_is_information_schema = false,
$replication = false
/**
* Creates a clickable column header for table information
*
- * @param string title to use for the link
- * @param string corresponds to sortable data name mapped in
libraries/db_info.inc.php
- * @param string initial sort order
- * @returns string link to be displayed in the table header
+ * @param string $title title to use for the link
+ * @param string $sort corresponds to sortable data name mapped in
libraries/db_info.inc.php
+ * @param string $initial_sort_order
+ * @return string link to be displayed in the table header
*/
function PMA_SortableTableHeader($title, $sort, $initial_sort_order = 'ASC')
{
diff --git a/libraries/file_listing.php b/libraries/file_listing.php
index 720ba82..5d9058a 100644
--- a/libraries/file_listing.php
+++ b/libraries/file_listing.php
@@ -10,9 +10,9 @@
/**
* Returns array of filtered file names
*
- * @param string directory to list
- * @param string regular expression to match files
- * @returns array sorted file list on success, false on failure
+ * @param string $dir directory to list
+ * @param string $expression regular expression to match files
+ * @return array sorted file list on success, false on failure
*/
function PMA_getDirContent($dir, $expression = '')
{
@@ -39,10 +39,10 @@ function PMA_getDirContent($dir, $expression = '')
/**
* Returns options of filtered file names
*
- * @param string directory to list
- * @param string regullar expression to match files
- * @param string currently active choice
- * @returns array sorted file list on success, false on failure
+ * @param string $dir directory to list
+ * @param string $extensions regullar expression to match files
+ * @param string $active currently active choice
+ * @return array sorted file list on success, false on failure
*/
function PMA_getFileSelectOptions($dir, $extensions = '', $active = '')
{
@@ -64,7 +64,7 @@ function PMA_getFileSelectOptions($dir, $extensions = '',
$active = '')
/**
* Get currently supported decompressions.
*
- * @returns string | separated list of extensions usable in PMA_getDirContent
+ * @return string | separated list of extensions usable in PMA_getDirContent
*/
function PMA_supportedDecompressions()
{
diff --git a/libraries/grab_globals.lib.php b/libraries/grab_globals.lib.php
index aafd169..993ca9d 100644
--- a/libraries/grab_globals.lib.php
+++ b/libraries/grab_globals.lib.php
@@ -16,8 +16,9 @@ if (! defined('PHPMYADMIN')) {
* copy values from one array to another, usually from a superglobal into
$GLOBALS
*
* @param array $array values from
- * @param array $target values to
- * @param boolean $sanitize prevent importing key names in $_import_blacklist
+ * @param array &$target values to
+ * @param bool $sanitize prevent importing key names in $_import_blacklist
+ * @return bool
*/
function PMA_recursive_extract($array, &$target, $sanitize = true)
{
diff --git a/libraries/import/upload/apc.php b/libraries/import/upload/apc.php
index 5250c92..5fe34bb 100644
--- a/libraries/import/upload/apc.php
+++ b/libraries/import/upload/apc.php
@@ -15,6 +15,9 @@ $ID_KEY = 'APC_UPLOAD_PROGRESS';
* Returns upload status.
*
* This is implementation for APC extension.
+ *
+ * @param string $id
+ * @return array|null
*/
function PMA_getUploadStatus($id)
{
@@ -22,7 +25,7 @@ function PMA_getUploadStatus($id)
global $ID_KEY;
if (trim($id) == "") {
- return;
+ return null;
}
if (! array_key_exists($id, $_SESSION[$SESSION_KEY])) {
$_SESSION[$SESSION_KEY][$id] = array(
diff --git a/libraries/import/upload/noplugin.php
b/libraries/import/upload/noplugin.php
index fa7796c..00dcb11 100644
--- a/libraries/import/upload/noplugin.php
+++ b/libraries/import/upload/noplugin.php
@@ -15,6 +15,9 @@ $ID_KEY = 'noplugin';
* Returns upload status.
*
* This is implementation when no webserver support exists, so it returns just
zeroes.
+ *
+ * @param string $id
+ * @return array|null
*/
function PMA_getUploadStatus($id)
{
@@ -22,7 +25,7 @@ function PMA_getUploadStatus($id)
global $ID_KEY;
if (trim($id) == "") {
- return;
+ return null;
}
if (! array_key_exists($id, $_SESSION[$SESSION_KEY])) {
$_SESSION[$SESSION_KEY][$id] = array(
diff --git a/libraries/import/upload/uploadprogress.php
b/libraries/import/upload/uploadprogress.php
index a3ec60b..d5c361c 100644
--- a/libraries/import/upload/uploadprogress.php
+++ b/libraries/import/upload/uploadprogress.php
@@ -14,6 +14,9 @@ $ID_KEY = "UPLOAD_IDENTIFIER";
* Returns upload status.
*
* This is implementation for uploadprogress extension.
+ *
+ * @param string $id
+ * @return array|null
*/
function PMA_getUploadStatus($id)
{
@@ -21,7 +24,7 @@ function PMA_getUploadStatus($id)
global $ID_KEY;
if (trim($id) == "") {
- return;
+ return null;
}
if (! array_key_exists($id, $_SESSION[$SESSION_KEY])) {
diff --git a/libraries/mime.lib.php b/libraries/mime.lib.php
index f394b8f..e9eb386 100644
--- a/libraries/mime.lib.php
+++ b/libraries/mime.lib.php
@@ -9,6 +9,9 @@
/**
* Tries to detect MIME type of content.
+ *
+ * @param string &$test
+ * @return string
*/
function PMA_detectMIME(&$test)
{
diff --git a/libraries/schema/Pdf_Relation_Schema.class.php
b/libraries/schema/Pdf_Relation_Schema.class.php
index 6e7846a..e74c14d 100644
--- a/libraries/schema/Pdf_Relation_Schema.class.php
+++ b/libraries/schema/Pdf_Relation_Schema.class.php
@@ -144,7 +144,7 @@ class PMA_Schema_PDF extends PMA_PDF
/**
* Sets the scaled line width
*
- * @param float width The line width
+ * @param float $width The line width
* @access public
* @see TCPDF::SetLineWidth()
*/
@@ -224,6 +224,10 @@ class PMA_Schema_PDF extends PMA_PDF
/**
* Compute number of lines used by a multicell of width w
+ *
+ * @param int $w
+ * @param string $txt
+ * @return int
*/
function NbLines($w, $txt)
{
@@ -386,7 +390,7 @@ class Table_Stats
* Returns title of the current table,
* title can have the dimensions of the table
*
- * @access private
+ * @return string
*/
private function _getTitle()
{
@@ -401,7 +405,7 @@ class Table_Stats
* @access private
* @see PMA_Schema_PDF
*/
- function _setWidth($fontSize)
+ private function _setWidth($fontSize)
{
global $pdf;
diff --git a/libraries/schema/Svg_Relation_Schema.class.php
b/libraries/schema/Svg_Relation_Schema.class.php
index 0593abd..b405b22 100644
--- a/libraries/schema/Svg_Relation_Schema.class.php
+++ b/libraries/schema/Svg_Relation_Schema.class.php
@@ -440,7 +440,7 @@ class Table_Stats
* @access private
* @see PMA_SVG
*/
- function _setWidthTable($font,$fontSize)
+ private function _setWidthTable($font,$fontSize)
{
global $svg;
diff --git a/libraries/schema/Visio_Relation_Schema.class.php
b/libraries/schema/Visio_Relation_Schema.class.php
index cfe4424..cf7bab2 100644
--- a/libraries/schema/Visio_Relation_Schema.class.php
+++ b/libraries/schema/Visio_Relation_Schema.class.php
@@ -280,13 +280,12 @@ class Table_Stats
/**
* Sets the width of the table
*
- * @param string font The font name
- * @param integer fontSize The font size
+ * @param string $font font name
+ * @param integer $fontSize font size
* @global object The current Visio XML document
- * @access private
* @see PMA_VISIO
*/
- function _setWidthTable($font,$fontSize)
+ private function _setWidthTable($font,$fontSize)
{
global $visio;
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index f4030ef..62b1ea7 100644
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -11,6 +11,9 @@ if (! defined('PHPMYADMIN')) {
/**
* Returns language name
+ *
+ * @param string $tmplang
+ * @return string
*/
function PMA_langName($tmplang)
{
@@ -182,6 +185,8 @@ function PMA_langDetect($str, $envType)
* traditional) must be detected before 'zh' (chinese simplified) for
* example.
*
+ * @param string $lang
+ * @return array
*/
function PMA_langDetails($lang)
{
diff --git a/libraries/sysinfo.lib.php b/libraries/sysinfo.lib.php
index bc0192f..96ac0e2 100644
--- a/libraries/sysinfo.lib.php
+++ b/libraries/sysinfo.lib.php
@@ -9,6 +9,9 @@
* @package phpMyAdmin
*/
+/**
+ * @return array
+ */
function getSysInfo()
{
$supported = array('Linux','WINNT');
diff --git a/scripts/signon-script.php b/scripts/signon-script.php
index e57ca1f..201d217 100644
--- a/scripts/signon-script.php
+++ b/scripts/signon-script.php
@@ -16,6 +16,9 @@
* This function returns username and password.
*
* It can optionally use configured username as parameter.
+ *
+ * @param string $user
+ * @return array
*/
function get_login_credentials($user)
{
diff --git a/test/libraries/common/PMA_expandUserString_test.php
b/test/libraries/common/PMA_expandUserString_test.php
index 748ddfe..39cc664 100644
--- a/test/libraries/common/PMA_expandUserString_test.php
+++ b/test/libraries/common/PMA_expandUserString_test.php
@@ -59,6 +59,8 @@ class PMA_expandUserString_test extends
PHPUnit_Extensions_OutputTestCase
/**
* Data provider
+ *
+ * @return array
*/
public function provider()
{
diff --git a/test/libraries/common/PMA_extractFieldSpec_test.php
b/test/libraries/common/PMA_extractFieldSpec_test.php
index ab789f4..eeb79c4 100644
--- a/test/libraries/common/PMA_extractFieldSpec_test.php
+++ b/test/libraries/common/PMA_extractFieldSpec_test.php
@@ -30,6 +30,8 @@ class PMA_extractFieldSpec_test extends
PHPUnit_Extensions_OutputTestCase
/**
* Data provider
+ *
+ * @return array
*/
public function provider()
{
diff --git a/test/libraries/common/PMA_foreignKeySupported_test.php
b/test/libraries/common/PMA_foreignKeySupported_test.php
index e0ebd2e..f9c3049 100644
--- a/test/libraries/common/PMA_foreignKeySupported_test.php
+++ b/test/libraries/common/PMA_foreignKeySupported_test.php
@@ -17,6 +17,8 @@ class PMA_foreignKeySupported_test extends
PHPUnit_Framework_TestCase
{
/**
* data provider for foreign key supported test
+ *
+ * @return array
*/
public function foreignkeySupportedDataProvider() {
return array(
diff --git a/test/libraries/common/PMA_formatNumberByteDown_test.php
b/test/libraries/common/PMA_formatNumberByteDown_test.php
index f0265c6..18ab8ba 100644
--- a/test/libraries/common/PMA_formatNumberByteDown_test.php
+++ b/test/libraries/common/PMA_formatNumberByteDown_test.php
@@ -47,8 +47,9 @@ class PMA_formatNumberByteDown_test extends
PHPUnit_Framework_TestCase
/**
* format number data provider
+ *
+ * @return array
*/
-
public function formatNumberDataProvider() {
return array(
array(10, 2, 2, '10 '),
@@ -72,6 +73,8 @@ class PMA_formatNumberByteDown_test extends
PHPUnit_Framework_TestCase
/**
* format byte down data provider
+ *
+ * @return array
*/
public function formatByteDownDataProvider() {
return array(
diff --git a/test/libraries/common/PMA_localisedDateTimespan_test.php
b/test/libraries/common/PMA_localisedDateTimespan_test.php
index 92f980c..4ed2909 100644
--- a/test/libraries/common/PMA_localisedDateTimespan_test.php
+++ b/test/libraries/common/PMA_localisedDateTimespan_test.php
@@ -54,6 +54,8 @@ class PMA_localisedDateTimespan_test extends
PHPUnit_Framework_TestCase
/**
* data provider for localised date test
+ *
+ * @return array
*/
public function localisedDateDataProvider() {
return array(
@@ -72,8 +74,9 @@ class PMA_localisedDateTimespan_test extends
PHPUnit_Framework_TestCase
/**
* data provider for localised timestamp test
+ *
+ * @return array
*/
-
public function timespanFormatDataProvider() {
return array(
array(1258, '0 days, 0 hours, 20 minutes and 58 seconds'),
diff --git a/test/libraries/common/PMA_printableBitValue_test.php
b/test/libraries/common/PMA_printableBitValue_test.php
index d211981..20d4f4f 100644
--- a/test/libraries/common/PMA_printableBitValue_test.php
+++ b/test/libraries/common/PMA_printableBitValue_test.php
@@ -18,8 +18,9 @@ class PMA_printableBitValue_test extends
PHPUnit_Framework_TestCase
/**
* data provider for printable bit value test
+ *
+ * @return array
*/
-
public function printableBitValueDataProvider() {
return array(
array('testtest', 64,
'0111010001100101011100110111010001110100011001010111001101110100'),
diff --git a/test/libraries/common/PMA_quoting_slashing_test.php
b/test/libraries/common/PMA_quoting_slashing_test.php
index 4ebecc0..d4e7104 100644
--- a/test/libraries/common/PMA_quoting_slashing_test.php
+++ b/test/libraries/common/PMA_quoting_slashing_test.php
@@ -35,6 +35,8 @@ class PMA_quoting_slashing_test extends
PHPUnit_Framework_TestCase
/**
* data provider for unQuote test
+ *
+ * @return array
*/
public function unQuoteProvider() {
return array(
@@ -55,6 +57,8 @@ class PMA_quoting_slashing_test extends
PHPUnit_Framework_TestCase
/**
* data provider for unQuote test with chosen quote
+ *
+ * @return array
*/
public function unQuoteSelectedProvider() {
return array(
@@ -75,6 +79,8 @@ class PMA_quoting_slashing_test extends
PHPUnit_Framework_TestCase
/**
* data provider for backquote test
+ *
+ * @return array
*/
public function backquoteDataProvider() {
return array(
diff --git a/test/libraries/common/PMA_stringOperations_test.php
b/test/libraries/common/PMA_stringOperations_test.php
index ca43335..3664b44 100644
--- a/test/libraries/common/PMA_stringOperations_test.php
+++ b/test/libraries/common/PMA_stringOperations_test.php
@@ -41,8 +41,9 @@ class PMA_stringOperations_test extends
PHPUnit_Framework_TestCase
/**
* data provider for flipstring test
+ *
+ * @return array
*/
-
public function flipStringDataProvider() {
return array(
array('test', "t<br />\ne<br />\ns<br />\nt"),
@@ -61,8 +62,9 @@ class PMA_stringOperations_test extends
PHPUnit_Framework_TestCase
/**
* data provider for userDir test
+ *
+ * @return array
*/
-
public function userDirDataProvider() {
return array(
array('/var/pma_tmp/%u/', "/var/pma_tmp/root/"),
@@ -83,8 +85,9 @@ class PMA_stringOperations_test extends
PHPUnit_Framework_TestCase
/**
* data provider for replace binary content test
+ *
+ * @return array
*/
-
public function replaceBinaryContentsDataProvider() {
return array(
array("\x000", '\00'),
@@ -104,8 +107,9 @@ class PMA_stringOperations_test extends
PHPUnit_Framework_TestCase
/**
* data provider for duplicate first newline test
+ *
+ * @return array
*/
-
public function duplicateFirstNewlineDataProvider() {
return array(
array('test', 'test'),
hooks/post-receive
--
phpMyAdmin
------------------------------------------------------------------------------
uberSVN's rich system and user administration capabilities and model
configuration take the hassle out of deploying and managing Subversion and
the tools developers use with it. Learn more about uberSVN and get a free
download at: http://p.sf.net/sfu/wandisco-dev2dev
_______________________________________________
Phpmyadmin-git mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-git